Docx Writer: Place toc after abstract, rather than before
This commit is contained in:
parent
79be04df69
commit
4d1e85a09e
1 changed files with 1 additions and 1 deletions
|
@ -641,7 +641,7 @@ writeOpenXML opts (Pandoc meta blocks) = do
|
|||
doc' <- (setFirstPara >> blocksToOpenXML opts blocks')
|
||||
notes' <- reverse `fmap` gets stFootnotes
|
||||
toc <- makeTOC opts
|
||||
let meta' = title ++ subtitle ++ authors ++ date ++ toc ++ abstract
|
||||
let meta' = title ++ subtitle ++ authors ++ date ++ abstract ++ toc
|
||||
return (meta' ++ doc', notes')
|
||||
|
||||
-- | Convert a list of Pandoc blocks to OpenXML.
|
||||
|
|
Loading…
Reference in a new issue