diff options
| author | reptee <[email protected]> | 2025-11-05 12:49:46 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-05 12:49:46 +0100 |
| commit | c660bd34197977e44ff55c7cfdc5a04ad193e186 (patch) | |
| tree | 5110e7e947527bb2d45e4df544f7ae9cde521de0 /pandoc.cabal | |
| parent | 018b03638a2fadc624722af8ba9f5d528ab4a8ce (diff) | |
Add BBCode writer (#11242)
`bbcode` is now supported as an output format, as well as variants
`bbcode_fluxbb` (FluxBB), `bbcode_phpbb` (phpBB), `bbcode_steam` (Hubzilla),
`bbcode_hubzilla` (Hubzilla), and `bbcode_xenforo` (xenForo).
[API change]
Adds a new module Text.Pandoc.Writers.BBCode, exporting a number of functions.
Also exports `writeBBCode`, `writeBBCodeSteam`, `writeBBCodeFluxBB`,
`writeBBCodePhpBB`, `writeBBCodeHubzilla`, `writeBBCodeXenforo` from
Text.Pandoc.Writers.
Diffstat (limited to 'pandoc.cabal')
| -rw-r--r-- | pandoc.cabal | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pandoc.cabal b/pandoc.cabal index e9d3fec2e..a5f21dbb2 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -111,6 +111,7 @@ data-files: data/templates/font-settings.latex data/templates/after-header-includes.latex data/templates/default.vimdoc + data/templates/default.bbcode -- translations data/translations/*.yaml @@ -342,6 +343,7 @@ extra-source-files: test/tables.fb2 test/tables.muse test/tables.vimdoc + test/tables.bbcode test/tables.xwiki test/tables/*.html4 test/tables/*.html5 @@ -389,6 +391,7 @@ extra-source-files: test/writer.xwiki test/writer.muse test/writer.vimdoc + test/writer.bbcode test/ansi-test.ansi test/writers-lang-and-dir.latex test/writers-lang-and-dir.context @@ -666,6 +669,7 @@ library Text.Pandoc.Writers.BibTeX, Text.Pandoc.Writers.ANSI, Text.Pandoc.Writers.Vimdoc, + Text.Pandoc.Writers.BBCode, Text.Pandoc.PDF, Text.Pandoc.UTF8, Text.Pandoc.Scripting, @@ -881,6 +885,7 @@ test-suite test-pandoc Tests.Writers.OOXML Tests.Writers.Ms Tests.Writers.AnnotatedTable + Tests.Writers.BBCode benchmark benchmark-pandoc import: common-executable |
