aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc/blank_lines_in_codeblocks.html
Commit message (Collapse)AuthorAgeFilesLines
* HtmlBlockProcessor preserves empty linesWaylan Limberg2013-02-071-1/+31
| | | | | | | | | | | | | Partial fix for #183. This has the same effect on empty lines in code blocks as not using the html processor at all (which was eating some of the missing newlines as reported in issue #183). By doing `rsplit('\n\n')` the third newline (in each set of three) always ends up at the end of a block, rather than the begining - which it less of an issue for the html processor. Also updated tests to indicate final intended output, although they do not fully pass yet.
* Preserve whitespace in empty linesWaylan Limberg2013-02-071-0/+31
Partial fix for #183. By preserving tabs at the start of empty lines in code blocks, the parser will retain those empty lines. Still does not work consistantly if the tab is missing!? Not sure why. Also added tests.