We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b157f9 commit 118b79eCopy full SHA for 118b79e
src/Text/Pandoc/Writers/Textile.hs
@@ -1,5 +1,4 @@
1
{-# LANGUAGE OverloadedStrings #-}
2
-{-# LANGUAGE ViewPatterns #-}
3
{- |
4
Module : Text.Pandoc.Writers.Textile
5
Copyright : Copyright (C) 2010-2021 John MacFarlane
@@ -111,8 +110,7 @@ blockToTextile opts (Div attr bs) = do
111
110
blockToTextile opts (Plain inlines) =
112
inlineListToTextile opts inlines
113
114
--- title beginning with fig: indicates that the image is a figure
115
-blockToTextile opts (Para [Image attr txt (src,T.stripPrefix "fig:" -> Just tit)]) = do
+blockToTextile opts (SimpleFigure attr txt src tit) = do
116
capt <- blockToTextile opts (Para txt)
117
im <- inlineToTextile opts (Image attr txt (src,tit))
118
return $ im <> "\n" <> capt
0 commit comments