ICML writer: Don't force all citations into footnotes.
This commit is contained in:
parent
d8fde9547e
commit
4d296f70df
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ inlineToICML opts style (Subscript lst) = inlinesToICML opts (subscriptName:styl
|
||||||
inlineToICML opts style (SmallCaps lst) = inlinesToICML opts (smallCapsName:style) lst
|
inlineToICML opts style (SmallCaps lst) = inlinesToICML opts (smallCapsName:style) lst
|
||||||
inlineToICML opts style (Quoted SingleQuote lst) = inlinesToICML opts style $ [Str "‘"] ++ lst ++ [Str "’"]
|
inlineToICML opts style (Quoted SingleQuote lst) = inlinesToICML opts style $ [Str "‘"] ++ lst ++ [Str "’"]
|
||||||
inlineToICML opts style (Quoted DoubleQuote lst) = inlinesToICML opts style $ [Str "“"] ++ lst ++ [Str "”"]
|
inlineToICML opts style (Quoted DoubleQuote lst) = inlinesToICML opts style $ [Str "“"] ++ lst ++ [Str "”"]
|
||||||
inlineToICML opts style (Cite _ lst) = footnoteToICML opts style [Para lst]
|
inlineToICML opts style (Cite _ lst) = inlinesToICML opts style lst
|
||||||
inlineToICML _ style (Code _ str) = charStyle (codeName:style) $ text $ escapeStringForXML str
|
inlineToICML _ style (Code _ str) = charStyle (codeName:style) $ text $ escapeStringForXML str
|
||||||
inlineToICML _ style Space = charStyle style space
|
inlineToICML _ style Space = charStyle style space
|
||||||
inlineToICML _ style LineBreak = charStyle style $ text lineSeparator
|
inlineToICML _ style LineBreak = charStyle style $ text lineSeparator
|
||||||
|
|
Loading…
Reference in a new issue