blob: 146fac9d4ef8264e0843d9a40ffbccda746369f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# Render a thematic break as 3 hash symbols.
s,<\?asciidoc-hr\?>,\&\#35; \&\#35; \&\#35;,
# Asciidoctor puts a zero-width space after ellipses for some reason -- get
# rid of it.
s,\&\#8203;,,g
# End every preformatted/blockquote with an explicit newlines. It shows up
# better in LibreOffice.
s,</literallayout>,\n</literallayout>,
|