diff options
| author | John MacFarlane <[email protected]> | 2025-07-26 22:22:35 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-07-26 22:45:11 -0700 |
| commit | caa2193912627938554887583d9c5d99ac4c4b67 (patch) | |
| tree | 95b134de863c5c3df722ca5308a05a0dc6cdd170 | |
| parent | 9b06dc0075ea7299589e09ab4e87655f0a2281b7 (diff) | |
Ensure that the default template for `xml` is null.
| -rw-r--r-- | src/Text/Pandoc/Templates.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Templates.hs b/src/Text/Pandoc/Templates.hs index fa921ae8b..ab517fc1b 100644 --- a/src/Text/Pandoc/Templates.hs +++ b/src/Text/Pandoc/Templates.hs @@ -102,6 +102,7 @@ getDefaultTemplate format = do "native" -> return "" "csljson" -> return "" "json" -> return "" + "xml" -> return "" "fb2" -> return "" "pptx" -> return "" "ipynb" -> return "" |
