diff options
Diffstat (limited to 'src/Text/Pandoc/Writers')
| -rw-r--r-- | src/Text/Pandoc/Writers/Docx.hs | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs index 8bb1d0ced..4e81def60 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -741,7 +741,12 @@ blockToOpenXML opts (Plain lst) = withParaProp (pCustomStyle "Compact")  -- title beginning with fig: indicates that the image is a figure  blockToOpenXML opts (Para [Image alt (src,'f':'i':'g':':':tit)]) = do    setFirstPara +  pushParaProp $ pCustomStyle $ +    if null alt +      then "Figure" +      else "FigureWithCaption"    paraProps <- getParaProps False +  popParaProp    contents <- inlinesToOpenXML opts [Image alt (src,tit)]    captionNode <- withParaProp (pCustomStyle "ImageCaption")                   $ blockToOpenXML opts (Para alt) | 
