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
Thanks to the pandoc raw_attribute, we can currently support the conversion of md documents that include html tags into docx
raw_attribute
Another potential tag to convert can be font color: In md and html, we have usually
<font color="blue">this is blue text</font>
In openxml, it needs to be converted this way:
<w:r><w:rPr><w:color w:val="blue"/></w:rPr>this is blue text</w:r>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks to the pandoc
raw_attribute
, we can currently support the conversion of md documents that include html tags into docxAnother potential tag to convert can be font color:
In md and html, we have usually
In openxml, it needs to be converted this way:
The text was updated successfully, but these errors were encountered: