I'm trying to generate an ePub file with abbreviations. Here's an example:
input.md:
--- title: Test language: en --- # Test HTML is maintained by W3C. and abbr.md:
*[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium and get-epub.sh:
#!/bin/bash pandoc -f markdown+abbreviations -t epub\ --abbreviations="abbr.md"\ "input.md" -o "output.epub"; I'm expecting to see something like this in the output.epub file:
<p> <abbr title="Hyper Text Markup Language">HTML</abbr> is maintained by <abbr title="World Wide Web Consortium">W3C</abbr>. </p> while the actual output is:
<p> HTML is maintained by W3C. </p> Did I miss something here?