Closed shapel closed 3 years ago
Hello Looks like I found the case with wrong behavior for {noformat}:
{noformat}
Command echo "{noformat}test{noformat}\n" | pandoc -f jira -t json | jq produces
echo "{noformat}test{noformat}\n" | pandoc -f jira -t json | jq
{ "pandoc-api-version": [ 1, 22 ], "meta": {}, "blocks": [] }
But if we add \n after {noformat} tag than it will parsed correctly echo "{noformat}\ntest{noformat}\n" | pandoc -f jira -t json | jq
echo "{noformat}\ntest{noformat}\n" | pandoc -f jira -t json | jq
{ "pandoc-api-version": [ 1, 22 ], "meta": {}, "blocks": [ { "t": "CodeBlock", "c": [ [ "", [], [] ], "test" ] } ] }
Hi Sorry for missing some other tags related to his issue like code, panel... Should I submit a new issue or this issue should be reopened?
code
panel
Ah, I missed those, too. A new issue would be best.
Hello Looks like I found the case with wrong behavior for
{noformat}
:Command
echo "{noformat}test{noformat}\n" | pandoc -f jira -t json | jq
producesBut if we add \n after {noformat} tag than it will parsed correctly
echo "{noformat}\ntest{noformat}\n" | pandoc -f jira -t json | jq