aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/Docx.hs
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2015-02-21 09:18:53 -0500
committerJesse Rosenthal <jrosenthal@jhu.edu>2015-02-21 09:18:53 -0500
commita7c67c897ecebe339078b212a93a35a54a6fc143 (patch)
tree4c8263913707835ad86df66461586ef94848fbaf /src/Text/Pandoc/Readers/Docx.hs
parent9654514e8a8f18eed4a9a5a3ef2b14d3be4e3187 (diff)
downloadpandoc-a7c67c897ecebe339078b212a93a35a54a6fc143.tar.gz
Docx reader: Minor cleanup.
The previous commits had some code repetition. This just makes it a bit easier to read.
Diffstat (limited to 'src/Text/Pandoc/Readers/Docx.hs')
-rw-r--r--src/Text/Pandoc/Readers/Docx.hs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs
index 1a95b753d..d61cc8b1b 100644
--- a/src/Text/Pandoc/Readers/Docx.hs
+++ b/src/Text/Pandoc/Readers/Docx.hs
@@ -278,11 +278,12 @@ runToInlines (Run rs runElems)
| Just (s, _) <- rStyle rs
, s `elem` codeStyles =
let rPr = resolveDependentRunStyle rs
+ codeString = code $ concatMap runElemToString runElems
in
return $ case rVertAlign rPr of
- Just SupScrpt -> superscript $ code $ concatMap runElemToString runElems
- Just SubScrpt -> subscript $ code $ concatMap runElemToString runElems
- _ -> code $ concatMap runElemToString runElems
+ Just SupScrpt -> superscript codeString
+ Just SubScrpt -> subscript codeString
+ _ -> codeString
| otherwise = do
let ils = concatReduce (map runElemToInlines runElems)
return $ (runStyleToTransform $ resolveDependentRunStyle rs) ils