pandoc/Text/Pandoc/Readers
fiddlosopher 97992e6f7b Improved handling of raw HTML in Markdown reader. (Resolves Issue #36.)
Tags that can be either block or inline (e.g. <ins>) should be treated
as block when appropriate and as inline when appropriate.  Thus, for
example,
  <ins>hi</ins>
should be treated as a paragraph with inline <ins> tags, while
  <ins>

  hi

  </ins>
should be treated as a paragraph within <ins> tags.
+ Moved htmlBlock after para in list of block parsers.  This ensures
  that tags that can be either block or inline get parsed as inline
  when appropriate.
+ Modified rawHtmlInline' so that block elements aren't treated as inline.
+ Modified para parser so that paragraphs containing only HTML tags and
  blank space are not allowed.  Treat these as raw HTML blocks instead.


git-svn-id: https://pandoc.googlecode.com/svn/trunk@1154 788f1e2b-df1e-0410-8736-df70ead52e1b
2007-12-24 04:22:20 +00:00
..
HTML.hs Changed failure message in anyHtmlBlockTag (minor change). 2007-12-24 04:22:08 +00:00
LaTeX.hs Modified LaTeX reader for new Math blocks. 2007-11-29 08:09:13 +00:00
Markdown.hs Improved handling of raw HTML in Markdown reader. (Resolves Issue #36.) 2007-12-24 04:22:20 +00:00
RST.hs Fixed handling of email addresses in markdown and reStructuredText. 2007-12-21 16:13:10 +00:00
TeXMath.hs Small fix to error handling in TeXMath parser: 2007-12-02 16:29:14 +00:00