Use 'fig:' instead of '\SOH' in title to indicate figure.
Revises 1a4b47e933
This commit is contained in:
parent
1a4b47e933
commit
7bc37e4414
16 changed files with 29 additions and 29 deletions
|
@ -783,9 +783,9 @@ para = try $ do
|
||||||
case B.toList result' of
|
case B.toList result' of
|
||||||
[Image alt (src,tit)]
|
[Image alt (src,tit)]
|
||||||
| Ext_implicit_figures `Set.member` exts ->
|
| Ext_implicit_figures `Set.member` exts ->
|
||||||
-- the \1 at beginning of title indicates a figure
|
-- the fig: at beginning of title indicates a figure
|
||||||
return $ B.para $ B.singleton
|
return $ B.para $ B.singleton
|
||||||
$ Image alt (src,'\1':tit)
|
$ Image alt (src,'f':'i':'g':':':tit)
|
||||||
_ -> return $ B.para result'
|
_ -> return $ B.para result'
|
||||||
|
|
||||||
plain :: MarkdownParser (F Blocks)
|
plain :: MarkdownParser (F Blocks)
|
||||||
|
|
|
@ -116,7 +116,7 @@ blockToAsciiDoc _ Null = return empty
|
||||||
blockToAsciiDoc opts (Plain inlines) = do
|
blockToAsciiDoc opts (Plain inlines) = do
|
||||||
contents <- inlineListToAsciiDoc opts inlines
|
contents <- inlineListToAsciiDoc opts inlines
|
||||||
return $ contents <> cr
|
return $ contents <> cr
|
||||||
blockToAsciiDoc opts (Para [Image alt (src,'\1':tit)]) =
|
blockToAsciiDoc opts (Para [Image alt (src,'f':'i':'g':':':tit)]) =
|
||||||
blockToAsciiDoc opts (Para [Image alt (src,tit)])
|
blockToAsciiDoc opts (Para [Image alt (src,tit)])
|
||||||
blockToAsciiDoc opts (Para inlines) = do
|
blockToAsciiDoc opts (Para inlines) = do
|
||||||
contents <- inlineListToAsciiDoc opts inlines
|
contents <- inlineListToAsciiDoc opts inlines
|
||||||
|
|
|
@ -131,8 +131,8 @@ blockToConTeXt :: Block
|
||||||
-> State WriterState Doc
|
-> State WriterState Doc
|
||||||
blockToConTeXt Null = return empty
|
blockToConTeXt Null = return empty
|
||||||
blockToConTeXt (Plain lst) = inlineListToConTeXt lst
|
blockToConTeXt (Plain lst) = inlineListToConTeXt lst
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToConTeXt (Para [Image txt (src,'\1':_)]) = do
|
blockToConTeXt (Para [Image txt (src,'f':'i':'g':':':_)]) = do
|
||||||
capt <- inlineListToConTeXt txt
|
capt <- inlineListToConTeXt txt
|
||||||
return $ blankline $$ "\\placefigure[here,nonumber]" <> braces capt <>
|
return $ blankline $$ "\\placefigure[here,nonumber]" <> braces capt <>
|
||||||
braces ("\\externalfigure" <> brackets (text src)) <> blankline
|
braces ("\\externalfigure" <> brackets (text src)) <> blankline
|
||||||
|
|
|
@ -144,8 +144,8 @@ blockToDocbook :: WriterOptions -> Block -> Doc
|
||||||
blockToDocbook _ Null = empty
|
blockToDocbook _ Null = empty
|
||||||
blockToDocbook _ (Header _ _ _) = empty -- should not occur after hierarchicalize
|
blockToDocbook _ (Header _ _ _) = empty -- should not occur after hierarchicalize
|
||||||
blockToDocbook opts (Plain lst) = inlinesToDocbook opts lst
|
blockToDocbook opts (Plain lst) = inlinesToDocbook opts lst
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToDocbook opts (Para [Image txt (src,'\1':_)]) =
|
blockToDocbook opts (Para [Image txt (src,'f':'i':'g':':':_)]) =
|
||||||
let alt = inlinesToDocbook opts txt
|
let alt = inlinesToDocbook opts txt
|
||||||
capt = if null txt
|
capt = if null txt
|
||||||
then empty
|
then empty
|
||||||
|
|
|
@ -347,8 +347,8 @@ blockToOpenXML opts (Header lev (ident,_,_) lst) = do
|
||||||
let bookmarkEnd = mknode "w:bookmarkEnd" [("w:id", id')] ()
|
let bookmarkEnd = mknode "w:bookmarkEnd" [("w:id", id')] ()
|
||||||
return $ [bookmarkStart] ++ contents ++ [bookmarkEnd]
|
return $ [bookmarkStart] ++ contents ++ [bookmarkEnd]
|
||||||
blockToOpenXML opts (Plain lst) = blockToOpenXML opts (Para lst)
|
blockToOpenXML opts (Plain lst) = blockToOpenXML opts (Para lst)
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToOpenXML opts (Para [Image alt (src,'\1':tit)]) = do
|
blockToOpenXML opts (Para [Image alt (src,'f':'i':'g':':':tit)]) = do
|
||||||
paraProps <- getParaProps
|
paraProps <- getParaProps
|
||||||
contents <- inlinesToOpenXML opts [Image alt (src,tit)]
|
contents <- inlinesToOpenXML opts [Image alt (src,tit)]
|
||||||
captionNode <- withParaProp (pStyle "ImageCaption")
|
captionNode <- withParaProp (pStyle "ImageCaption")
|
||||||
|
|
|
@ -316,8 +316,8 @@ linkID i = "l" ++ (show i)
|
||||||
blockToXml :: Block -> FBM [Content]
|
blockToXml :: Block -> FBM [Content]
|
||||||
blockToXml (Plain ss) = cMapM toXml ss -- FIXME: can lead to malformed FB2
|
blockToXml (Plain ss) = cMapM toXml ss -- FIXME: can lead to malformed FB2
|
||||||
blockToXml (Para [Math DisplayMath formula]) = insertMath NormalImage formula
|
blockToXml (Para [Math DisplayMath formula]) = insertMath NormalImage formula
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToXml (Para [Image alt (src,'\1':tit)]) =
|
blockToXml (Para [Image alt (src,'f':'i':'g':':':tit)]) =
|
||||||
insertImage NormalImage (Image alt (src,tit))
|
insertImage NormalImage (Image alt (src,tit))
|
||||||
blockToXml (Para ss) = liftM (list . el "p") $ cMapM toXml ss
|
blockToXml (Para ss) = liftM (list . el "p") $ cMapM toXml ss
|
||||||
blockToXml (CodeBlock _ s) = return . spaceBeforeAfter .
|
blockToXml (CodeBlock _ s) = return . spaceBeforeAfter .
|
||||||
|
|
|
@ -392,8 +392,8 @@ treatAsImage fp =
|
||||||
blockToHtml :: WriterOptions -> Block -> State WriterState Html
|
blockToHtml :: WriterOptions -> Block -> State WriterState Html
|
||||||
blockToHtml _ Null = return mempty
|
blockToHtml _ Null = return mempty
|
||||||
blockToHtml opts (Plain lst) = inlineListToHtml opts lst
|
blockToHtml opts (Plain lst) = inlineListToHtml opts lst
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToHtml opts (Para [Image txt (s,'\1':tit)]) = do
|
blockToHtml opts (Para [Image txt (s,'f':'i':'g':':':tit)]) = do
|
||||||
img <- inlineToHtml opts (Image txt (s,tit))
|
img <- inlineToHtml opts (Image txt (s,tit))
|
||||||
let tocapt = if writerHtml5 opts
|
let tocapt = if writerHtml5 opts
|
||||||
then H5.figcaption
|
then H5.figcaption
|
||||||
|
|
|
@ -277,8 +277,8 @@ blockToLaTeX :: Block -- ^ Block to convert
|
||||||
-> State WriterState Doc
|
-> State WriterState Doc
|
||||||
blockToLaTeX Null = return empty
|
blockToLaTeX Null = return empty
|
||||||
blockToLaTeX (Plain lst) = inlineListToLaTeX lst
|
blockToLaTeX (Plain lst) = inlineListToLaTeX lst
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToLaTeX (Para [Image txt (src,'\1':tit)]) = do
|
blockToLaTeX (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- if null txt
|
capt <- if null txt
|
||||||
then return empty
|
then return empty
|
||||||
else (\c -> "\\caption" <> braces c) `fmap` inlineListToLaTeX txt
|
else (\c -> "\\caption" <> braces c) `fmap` inlineListToLaTeX txt
|
||||||
|
|
|
@ -246,8 +246,8 @@ blockToMarkdown _ Null = return empty
|
||||||
blockToMarkdown opts (Plain inlines) = do
|
blockToMarkdown opts (Plain inlines) = do
|
||||||
contents <- inlineListToMarkdown opts inlines
|
contents <- inlineListToMarkdown opts inlines
|
||||||
return $ contents <> cr
|
return $ contents <> cr
|
||||||
-- title beginning with \1 indicates figure
|
-- title beginning with fig: indicates figure
|
||||||
blockToMarkdown opts (Para [Image alt (src,'\1':tit)]) =
|
blockToMarkdown opts (Para [Image alt (src,'f':'i':'g':':':tit)]) =
|
||||||
blockToMarkdown opts (Para [Image alt (src,tit)])
|
blockToMarkdown opts (Para [Image alt (src,tit)])
|
||||||
blockToMarkdown opts (Para inlines) = do
|
blockToMarkdown opts (Para inlines) = do
|
||||||
contents <- inlineListToMarkdown opts inlines
|
contents <- inlineListToMarkdown opts inlines
|
||||||
|
|
|
@ -81,8 +81,8 @@ blockToMediaWiki _ Null = return ""
|
||||||
blockToMediaWiki opts (Plain inlines) =
|
blockToMediaWiki opts (Plain inlines) =
|
||||||
inlineListToMediaWiki opts inlines
|
inlineListToMediaWiki opts inlines
|
||||||
|
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToMediaWiki opts (Para [Image txt (src,'\1':tit)]) = do
|
blockToMediaWiki opts (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- if null txt
|
capt <- if null txt
|
||||||
then return ""
|
then return ""
|
||||||
else ("|caption " ++) `fmap` inlineListToMediaWiki opts txt
|
else ("|caption " ++) `fmap` inlineListToMediaWiki opts txt
|
||||||
|
|
|
@ -114,8 +114,8 @@ blockToOrg :: Block -- ^ Block element
|
||||||
-> State WriterState Doc
|
-> State WriterState Doc
|
||||||
blockToOrg Null = return empty
|
blockToOrg Null = return empty
|
||||||
blockToOrg (Plain inlines) = inlineListToOrg inlines
|
blockToOrg (Plain inlines) = inlineListToOrg inlines
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToOrg (Para [Image txt (src,'\1':tit)]) = do
|
blockToOrg (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- if null txt
|
capt <- if null txt
|
||||||
then return empty
|
then return empty
|
||||||
else (\c -> "#+CAPTION: " <> c <> blankline) `fmap`
|
else (\c -> "#+CAPTION: " <> c <> blankline) `fmap`
|
||||||
|
|
|
@ -148,8 +148,8 @@ blockToRST :: Block -- ^ Block element
|
||||||
-> State WriterState Doc
|
-> State WriterState Doc
|
||||||
blockToRST Null = return empty
|
blockToRST Null = return empty
|
||||||
blockToRST (Plain inlines) = inlineListToRST inlines
|
blockToRST (Plain inlines) = inlineListToRST inlines
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToRST (Para [Image txt (src,'\1':tit)]) = do
|
blockToRST (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- inlineListToRST txt
|
capt <- inlineListToRST txt
|
||||||
let fig = "figure:: " <> text src
|
let fig = "figure:: " <> text src
|
||||||
let alt = ":alt: " <> if null tit then capt else text tit
|
let alt = ":alt: " <> if null tit then capt else text tit
|
||||||
|
|
|
@ -126,8 +126,8 @@ blockToTexinfo Null = return empty
|
||||||
blockToTexinfo (Plain lst) =
|
blockToTexinfo (Plain lst) =
|
||||||
inlineListToTexinfo lst
|
inlineListToTexinfo lst
|
||||||
|
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToTexinfo (Para [Image txt (src,'\1':tit)]) = do
|
blockToTexinfo (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- if null txt
|
capt <- if null txt
|
||||||
then return empty
|
then return empty
|
||||||
else (\c -> text "@caption" <> braces c) `fmap`
|
else (\c -> text "@caption" <> braces c) `fmap`
|
||||||
|
|
|
@ -101,8 +101,8 @@ blockToTextile _ Null = return ""
|
||||||
blockToTextile opts (Plain inlines) =
|
blockToTextile opts (Plain inlines) =
|
||||||
inlineListToTextile opts inlines
|
inlineListToTextile opts inlines
|
||||||
|
|
||||||
-- title beginning with \1 indicates that the image is a figure
|
-- title beginning with fig: indicates that the image is a figure
|
||||||
blockToTextile opts (Para [Image txt (src,'\1':tit)]) = do
|
blockToTextile opts (Para [Image txt (src,'f':'i':'g':':':tit)]) = do
|
||||||
capt <- blockToTextile opts (Para txt)
|
capt <- blockToTextile opts (Para txt)
|
||||||
im <- inlineToTextile opts (Image txt (src,tit))
|
im <- inlineToTextile opts (Image txt (src,tit))
|
||||||
return $ im ++ "\n" ++ capt
|
return $ im ++ "\n" ++ capt
|
||||||
|
|
|
@ -384,7 +384,7 @@ Pandoc (Meta {docTitle = [Str "Pandoc",Space,Str "Test",Space,Str "Suite"], docA
|
||||||
,HorizontalRule
|
,HorizontalRule
|
||||||
,Header 1 ("images",[],[]) [Str "Images"]
|
,Header 1 ("images",[],[]) [Str "Images"]
|
||||||
,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"]
|
,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"]
|
||||||
,Para [Image [Str "lalune"] ("lalune.jpg","\SOHVoyage dans la Lune")]
|
,Para [Image [Str "lalune"] ("lalune.jpg","fig:Voyage dans la Lune")]
|
||||||
,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image [Str "movie"] ("movie.jpg",""),Space,Str "icon."]
|
,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image [Str "movie"] ("movie.jpg",""),Space,Str "icon."]
|
||||||
,HorizontalRule
|
,HorizontalRule
|
||||||
,Header 1 ("footnotes",[],[]) [Str "Footnotes"]
|
,Header 1 ("footnotes",[],[]) [Str "Footnotes"]
|
||||||
|
|
|
@ -384,7 +384,7 @@ Pandoc (Meta {docTitle = [Str "Pandoc",Space,Str "Test",Space,Str "Suite"], docA
|
||||||
,HorizontalRule
|
,HorizontalRule
|
||||||
,Header 1 ("images",[],[]) [Str "Images"]
|
,Header 1 ("images",[],[]) [Str "Images"]
|
||||||
,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"]
|
,Para [Str "From",Space,Quoted DoubleQuote [Str "Voyage",Space,Str "dans",Space,Str "la",Space,Str "Lune"],Space,Str "by",Space,Str "Georges",Space,Str "Melies",Space,Str "(1902):"]
|
||||||
,Para [Image [Str "lalune"] ("lalune.jpg","\SOHVoyage dans la Lune")]
|
,Para [Image [Str "lalune"] ("lalune.jpg","fig:Voyage dans la Lune")]
|
||||||
,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image [Str "movie"] ("movie.jpg",""),Space,Str "icon."]
|
,Para [Str "Here",Space,Str "is",Space,Str "a",Space,Str "movie",Space,Image [Str "movie"] ("movie.jpg",""),Space,Str "icon."]
|
||||||
,HorizontalRule
|
,HorizontalRule
|
||||||
,Header 1 ("footnotes",[],[]) [Str "Footnotes"]
|
,Header 1 ("footnotes",[],[]) [Str "Footnotes"]
|
||||||
|
|
Loading…
Reference in a new issue