diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-11-14 21:41:50 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-11-14 21:41:50 -0800 |
commit | b5d066f167700f5a35867ecefe5cdcecf23b9fdc (patch) | |
tree | 80797983212ecd41d5e190d830da998c1c1a7e2d | |
parent | f63b76e1698b0d7eba6b43ef45faaeee2b01b9ca (diff) | |
download | pandoc-b5d066f167700f5a35867ecefe5cdcecf23b9fdc.tar.gz |
Revise deprecation warning for --atx-headers.
-rw-r--r-- | src/Text/Pandoc/App/CommandLineOptions.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App/CommandLineOptions.hs b/src/Text/Pandoc/App/CommandLineOptions.hs index 661c6e06d..906fcc4c0 100644 --- a/src/Text/Pandoc/App/CommandLineOptions.hs +++ b/src/Text/Pandoc/App/CommandLineOptions.hs @@ -531,7 +531,7 @@ options = (NoArg (\opt -> do deprecatedOption "--atx-headers" - "use --markdown-headings=atx" + "Use --markdown-headings=atx instead." return opt { optSetextHeaders = False } )) "" -- "Use atx-style headers for markdown" |