diff options
| -rw-r--r-- | src/Text/Pandoc/Writers/Docx.hs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/src/Text/Pandoc/Writers/Docx.hs b/src/Text/Pandoc/Writers/Docx.hs index a841e1b66..8cfe24199 100644 --- a/src/Text/Pandoc/Writers/Docx.hs +++ b/src/Text/Pandoc/Writers/Docx.hs @@ -1045,6 +1045,7 @@ inlineToOpenXML opts (Math mathType str) = do    let displayType = if mathType == DisplayMath                         then DisplayBlock                         else DisplayInline +  when (displayType == DisplayBlock) setFirstPara    case writeOMML displayType <$> readTeX str of          Right r -> return [r]          Left  _ -> inlinesToOpenXML opts (texMathToInlines mathType str) | 
