Textile reader: Parse +text+ as emphasized (should be underline).

This commit is contained in:
John MacFarlane 2012-04-27 15:10:40 -07:00
parent 5abf499dad
commit 5932d905ff

View file

@ -368,6 +368,7 @@ inlineMarkup = choice [ simpleInline (string "??") (Cite [])
, simpleInline (string "__") Emph
, simpleInline (char '*') Strong
, simpleInline (char '_') Emph
, simpleInline (char '+') Emph -- approximates underline
, simpleInline (char '-') Strikeout
, simpleInline (char '^') Superscript
, simpleInline (char '~') Subscript