pandoc/Text/Pandoc
fiddlosopher e37df6db69 Fixed bug in the markdown reader: HTML preceding a code block
could cause it to be parsed as a paragraph.  (The problem is that
the HTML parser used to eat all blank space after an HTML block,
including the indentation of the code block.)  Resolves Issue #39.
+ In Text.Pandoc.Readers.HTML, removed parsing of following space
  from rawHtmlBlock.
+ In Text.Pandoc.Readers.Markdown, modified rawHtmlBlocks so that
  indentation is eaten *only* on the first line after the HTML
  block.  This means that in
  <div>
       foo
  <div>
  the foo won't be treated as a code block, but in
  <div>

      foo

  </div>
  it will.  This seems the right approach for least suprise.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@1164 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-12-31 01:02:44 +00:00
..
Readers Fixed bug in the markdown reader: HTML preceding a code block 2007-12-31 01:02:44 +00:00
Writers Changed handling of titles in HTML writer so you don't get "titleprefix - " 2007-12-29 21:11:33 +00:00
Blocks.hs Moved everything from src into the top-level directory. 2007-11-29 02:02:34 +00:00
CharacterReferences.hs Moved everything from src into the top-level directory. 2007-11-29 02:02:34 +00:00
Definition.hs Added new Math block element. 2007-11-29 08:09:07 +00:00
Shared.hs Fixed handling of email addresses in markdown and reStructuredText. 2007-12-21 16:13:10 +00:00
UTF8.hs Moved everything from src into the top-level directory. 2007-11-29 02:02:34 +00:00