aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-06-02 21:37:15 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-06-02 21:37:15 -0700
commit6ea706256de67c5480b300b0063729ae8f459c4c (patch)
treec5e5b2c53f129057c4c3f45a0f6a23aeeecc4078 /src
parentd32e8664498d799932927d9865ce71e014472ef3 (diff)
downloadpandoc-6ea706256de67c5480b300b0063729ae8f459c4c.tar.gz
Support --number-sections in RST output...
via the "section-numbering" directive in standalone output.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Writers/RST.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Writers/RST.hs b/src/Text/Pandoc/Writers/RST.hs
index f82597c55..1fd984a6d 100644
--- a/src/Text/Pandoc/Writers/RST.hs
+++ b/src/Text/Pandoc/Writers/RST.hs
@@ -103,6 +103,7 @@ pandocToRST (Pandoc meta blocks) = do
let context = defField "body" main
$ defField "toc" (writerTableOfContents opts)
$ defField "toc-depth" (show $ writerTOCDepth opts)
+ $ defField "number-sections" (writerNumberSections opts)
$ defField "math" hasMath
$ defField "title" (render Nothing title :: String)
$ defField "math" hasMath