css - Where is significant white space in pandoc/markdown usually regulated? -
i'm using pandoc convert markdown documents .html via custom css file.
everything working except 1 thing. understand text in backticks ``
should white space significant, since code inside. in case, not - in other words, looks ordinary other text.
i'm interested in regulated in pandoc, or in custom css file - css attribute regulates whether white space should significant?
pandoc put text between backticks inside html <code>
tags. leading , trailing whitespace ignored (as in markdown.pl), internal spaces preserved. newlines treated spaces. check html source make sure have <code>
tags. if don't, there problem markdown source. check make sure you're not linking css overrides default settings <code>
tags.
Comments
Post a Comment