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
Bold and italics are not exported to pdf.
Taking the following markdown document:
This is _foo_ and **bar** and **_foobar_**
And exporting it with:
markus transform --from markdown_cicero --to pdf --input test.md --output test.pdf
Results in the following pdf where italics and bold are absent.
test.pdf
The text was updated successfully, but these errors were encountered:
Here is the relevant part of the pdfmake JSON:
{ "style": "Document", "content": [ { "style": "Paragraph", "text": [ { "text": "This is " }, { "style": "Emph", "text": [ { "text": "foo" } ], "italics": true }, { "text": " and " }, { "style": "Strong", "text": [ { "text": "bar" } ], "bold": true }, { "text": " and " }, { "style": "Strong", "text": [ { "style": "Emph", "text": [ { "text": "foobar" } ], "italics": true } ], "bold": true } ], "margin": [ 0, 5 ] } ],
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug Report 🐛
Bold and italics are not exported to pdf.
Steps to Reproduce
Taking the following markdown document:
And exporting it with:
Results in the following pdf where italics and bold are absent.
test.pdf
The text was updated successfully, but these errors were encountered: