Count anything that isn't a known block (HTML) tag as an inline tag
(rather than the other way around). Added "html", "head", and "body" to list of block tags. Resolves Issue #66, allowing <lj> to count as an inline tag. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1276 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
parent
2fdcd1701a
commit
6a46ffc0ad
1 changed files with 4 additions and 4 deletions
|
@ -69,9 +69,9 @@ inlineHtmlTags = ["a", "abbr", "acronym", "b", "basefont", "bdo", "big",
|
|||
"small", "span", "strike", "strong", "sub", "sup",
|
||||
"textarea", "tt", "u", "var"] ++ eitherBlockOrInline
|
||||
|
||||
blockHtmlTags = ["address", "blockquote", "center", "dir", "div",
|
||||
blockHtmlTags = ["address", "blockquote", "body", "center", "dir", "div",
|
||||
"dl", "fieldset", "form", "h1", "h2", "h3", "h4",
|
||||
"h5", "h6", "hr", "isindex", "menu", "noframes",
|
||||
"h5", "h6", "hr", "html", "isindex", "menu", "noframes",
|
||||
"noscript", "ol", "p", "pre", "table", "ul", "dd",
|
||||
"dt", "frameset", "li", "tbody", "td", "tfoot",
|
||||
"th", "thead", "tr", "script"] ++ eitherBlockOrInline
|
||||
|
@ -257,11 +257,11 @@ isBlock tag = (extractTagType tag) `elem` blockHtmlTags
|
|||
|
||||
anyHtmlBlockTag = try $ do
|
||||
tag <- anyHtmlTag <|> anyHtmlEndTag
|
||||
if not (isInline tag) then return tag else fail "not a block tag"
|
||||
if isBlock tag then return tag else fail "not a block tag"
|
||||
|
||||
anyHtmlInlineTag = try $ do
|
||||
tag <- anyHtmlTag <|> anyHtmlEndTag
|
||||
if isInline tag then return tag else fail "not an inline tag"
|
||||
if not (isBlock tag) then return tag else fail "not an inline tag"
|
||||
|
||||
-- | Parses material between script tags.
|
||||
-- Scripts must be treated differently, because they can contain '<>' etc.
|
||||
|
|
Loading…
Add table
Reference in a new issue