File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -365,6 +365,8 @@ blockHandlers = M.fromList
365365 pure $ B. plain . B. text . mconcat . map toNum $ V. toList nums)
366366 ,(" footnote.entry" , \ _ fields ->
367367 getField " body" fields >>= pWithContents pBlocks)
368+ ,(" pad" , \ _ fields -> -- ignore paddingy
369+ getField " body" fields >>= pWithContents pBlocks)
368370 ]
369371
370372inlineHandlers :: PandocMonad m =>
@@ -499,6 +501,8 @@ inlineHandlers = M.fromList
499501 body <- getField " body" fields
500502 display <- getField " block" fields
501503 (if display then B. displayMath else B. math) . writeTeX <$> pMathMany body)
504+ ,(" pad" , \ _ fields -> -- ignore paddingy
505+ getField " body" fields >>= pWithContents pInlines)
502506 ]
503507
504508getInlineBody :: PandocMonad m => M. Map Identifier Val -> P m (Seq Content )
You can’t perform that action at this time.
0 commit comments