From bdcbb67168ce67d341f2ee0f9dfad1330735de48 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Sat, 7 Sep 2024 20:23:56 -0700 Subject: [PATCH] T.P.Opp: Change default for optNumberOffset to `[]`. This behaves the same as `[0,0,0,0,0]`. --- src/Text/Pandoc/App/Opt.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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