Fixed bug in HTML reader: it was looking for <IT> tag, not <I>.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1161 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
6c1f9c8e39
commit
6e1a652429
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ rawHtmlInline = do
|
|||
betweenTags tag = try $ htmlTag tag >> inlinesTilEnd tag >>=
|
||||
return . normalizeSpaces
|
||||
|
||||
emph = (betweenTags "em" <|> betweenTags "it") >>= return . Emph
|
||||
emph = (betweenTags "em" <|> betweenTags "i") >>= return . Emph
|
||||
|
||||
strong = (betweenTags "b" <|> betweenTags "strong") >>= return . Strong
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue