diff options
| author | John MacFarlane <[email protected]> | 2024-09-07 20:23:56 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2024-09-08 08:29:23 -0700 |
| commit | bdcbb67168ce67d341f2ee0f9dfad1330735de48 (patch) | |
| tree | edf841f7055a9592d951d7fe1ce674f0940649a3 | |
| parent | 3e6eb1cde217fe2b7715c46a367fed6b91c9fc96 (diff) | |
T.P.Opp: Change default for optNumberOffset to `[]`.
This behaves the same as `[0,0,0,0,0]`.
| -rw-r--r-- | src/Text/Pandoc/App/Opt.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App/Opt.hs b/src/Text/Pandoc/App/Opt.hs index 1bbf82522..413778216 100644 --- a/src/Text/Pandoc/App/Opt.hs +++ b/src/Text/Pandoc/App/Opt.hs @@ -746,7 +746,7 @@ defaultOpts = Opt , optOutputFile = Nothing , optInputFiles = Nothing , optNumberSections = False - , optNumberOffset = [0,0,0,0,0,0] + , optNumberOffset = [] , optSectionDivs = False , optIncremental = False , optSelfContained = False |
