Open
Description
Bug Report: Pandoc Jira-Syntax Fixed-Width Markup Parsing Issue
Description of the Problem: Pandoc does not correctly parse/translate (newer?) Jira syntax for fixed-width font. The syntax {{{}fixed width font{}}}
is not converted correctly; the nested curly bracket pairs before and after the text remain unchanged in the output.
Steps to Reproduce:
- Run the following command:
timeout 60 pandoc -f jira -t gfm --wrap=preserve --sandbox
- Use the following Jira-formatted input:
{{{}fixed width font{}}}
- Observe the output, which incorrectly retains the surrounding curly brackets.
Expected Behavior:
The output should correctly format the fixed-width text without preserving the extra curly brackets.
My Current Workaround: I preprocess Jira markup as follows:
jiraFormattedText = jiraFormattedText
.replaceAll("\\{\\{\\{", "\\{\\{")
.replaceAll("\\{\\}\\}\\}", "\\}\\}");
Pandoc Version:
- Version: pandoc-3.6.3-1-amd64.deb
- Operating System: Debian 12 "Bookworm"