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:
fiddlosopher 2007-12-30 02:21:01 +00:00
parent 6c1f9c8e39
commit 6e1a652429

View file

@ -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