diff options
| author | Santiago Zarate <[email protected]> | 2024-12-23 21:34:08 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-12-23 12:34:08 -0800 |
| commit | af2b276afeaae3faa4c4a9759d1530e2f1da6871 (patch) | |
| tree | 8bfe52b2300498c7f43bc57387d01fb080d4ce3f | |
| parent | f6b42450f9f8272bd193f11ef6f40a06a05dffd8 (diff) | |
Improve message for asciidoc input error (#10492)
Closes #8416.
| -rw-r--r-- | src/Text/Pandoc/Error.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Error.hs b/src/Text/Pandoc/Error.hs index 373871ceb..f9c9aea8d 100644 --- a/src/Text/Pandoc/Error.hs +++ b/src/Text/Pandoc/Error.hs @@ -124,6 +124,7 @@ renderError e = "\nTry using Word to save your DOC file as DOCX," <> " and convert that with pandoc." "pdf" -> "\nPandoc can convert to PDF, but not from PDF." + "asciidoc" -> "\nPandoc can convert to asciidoc, but not from asciidoc." _ -> "" PandocUnknownWriterError w -> "Unknown output format " <> w <> |
