We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explain the problem. Do the following:
pandoc -i test.json -t mediawiki
where test.json contains the following (or similar):
test.json
{ "pandoc-api-version": [ 1, 23 ], "meta": {}, "blocks": [ { "t": "Plain", "c": [ { "t": "Link", "c": [ [ "", [], [] ], [ { "t": "Link", "c": [ [ "", [], [] ], [ { "t": "Str", "c": "test" }, { "t": "Strong", "c": [ { "t": "Link", "c": [ [ "", [], [] ], [ { "t": "Str", "c": "test" } ], [ "baz", "" ] ] } ] } ], [ "bar", "" ] ] } ], [ "foo", "" ] ] } ] } ] }
[[foo|test[[bar|test'''test[[baz|test]]''']]]]
Which is displayed by MediaWiki as: [[foo|test[[bar|testtesttest]]]]
Something like
[[foo|test test'''test test''']]
which MediaWiki displays as: test testtest test
Compare this with the output of the html writer:
<a href="foo">test<span>test<strong>test<span>test</span></strong></span></a>
Which is very similar to desired Mediawiki output.
Pandoc version?
pandoc 3.0 Features: +server +lua Scripting engine: Lua 5.4 OS: Mac
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Explain the problem.
Do the following:
where
test.json
contains the following (or similar):Actual output:
Which is displayed by MediaWiki as:
[[foo|test[[bar|testtesttest]]]]
Expected result:
Something like
which MediaWiki displays as:
test testtest test
Compare this with the output of the html writer:
Which is very similar to desired Mediawiki output.
Pandoc version?
The text was updated successfully, but these errors were encountered: