home · contact · privacy
Fix pandoc email obfuscation default.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 3 Jan 2017 02:26:15 +0000 (03:26 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 3 Jan 2017 02:26:15 +0000 (03:26 +0100)
processor/metadata/default.intermediate.do

index bf87309575ba431c31d95327d762bbe831b89671..4645223248b00fcebf14ef551c9b8a934c4caf64 100644 (file)
@@ -11,10 +11,10 @@ rstfile="../${1%.intermediate}.rst"
 # Build intermediate file.
 if [ -f "$rstfile" ]; then
   redo-ifchange "$rstfile"
-  pandoc -f rst --template="$template" --mathml -t html5 "$rstfile" --base-header-level=2 > "$3"
+  pandoc -f rst --template="$template" --mathml -t html5 "$rstfile" --base-header-level=2 --email-obfuscation=references > "$3"
 elif [ -f "$mdfile" ]; then
   redo-ifchange "$mdfile"
-  pandoc -f markdown --template="$template" --mathml -t html5 "$mdfile" --base-header-level=2 > "$3"
+  pandoc -f markdown --template="$template" --mathml -t html5 "$mdfile" --base-header-level=2 --email-obfuscation=references > "$3"
 fi
 
 # Update meta file if appropriate.