aboutsummaryrefslogtreecommitdiff
path: root/test/command/5304.md
AgeCommit message (Collapse)AuthorFilesLines
2021-04-25Markdown writer: Cleaner (code)blocks with single class (#7242)Jan Tojnar1-1/+1
When a block only has a single class and no other attributes, it is not necessary to wrap the class attribute in curly braces – the class name can be placed after the opening mark as is. This will result in bit cleaner output when pandoc is used as a markdown pretty-printer.
2019-02-15Markdown reader: fix bug parsing fenced code blocks.John MacFarlane1-0/+24
Previously parsing would break if the code block contained a string of backticks of sufficient length followed by something other than end of line. Closes #5304.