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
Originally posted by rgaiacs January 30, 2024 Pandoc has support to Microsoft Word's native table caption. For example, when mwe-table.docx
is converted using pandoc --from docx --to html mwe-table.docx, it produces
pandoc --from docx --to html mwe-table.docx
<p>Lorem ipsum.</p> <table> <caption><p>Awesome table</p></caption> <colgroup> <col style="width: 50%" /> <col style="width: 50%" /> </colgroup> <thead> <tr class="header"> <th>A</th> <th>B</th> </tr> </thead> <tbody> <tr class="odd"> <td>1</td> <td>2</td> </tr> </tbody> </table>
Does Pandoc has support to read Microsoft Word's native figure caption? For example, when mwe-img.docx
is converted using pandoc --from docx --to html mwe-img.docx, it produces
pandoc --from docx --to html mwe-img.docx
<p>Lorem ipsum.</p> <p><img src="media/image1.png" style="width:1.10263in;height:1.10263in" /></p> <p>Figure Blue square.</p>
instead of
<p>Lorem ipsum.</p> <figure> <img src="media/image1.png"/> <figcaption> Blue square. </figcaption> </figure> ```</div>
The text was updated successfully, but these errors were encountered:
94975a4
No branches or pull requests
Discussed in #9390
Originally posted by rgaiacs January 30, 2024
Pandoc has support to Microsoft Word's native table caption. For example, when mwe-table.docx
is converted using
pandoc --from docx --to html mwe-table.docx
, it producesDoes Pandoc has support to read Microsoft Word's native figure caption? For example, when mwe-img.docx
is converted using
pandoc --from docx --to html mwe-img.docx
, it producesinstead of
The text was updated successfully, but these errors were encountered: