blob: f78c65ecd34df6ad1bb456968be1304f4c904718 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# WilloraPDF extension: explicit "unmatched" double-quote shortcuts.
#
# This is to work around a shortcoming in Asciidoctor when a double-quote is
# right up against a non-word character -- em-dashes, ellipses, etc. TL;DR
# it's better to let Asciidoctor handle ("`) and (`") automatically by
# default EXCEPT FOR the times we need to wrangle it ourselves.
s,\&_OPENDOUBLEQUOTE;,\"\`,g
s,\&_CLOSEDOUBLEQUOTE;,\`\",g
|