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
Support markup of pre/post table caption
pandoc supports the following syntax.
: This is title |item|description| |-----|-----| |aaa|explanation|
It will be converted into:
% pandoc table-pre-title.md <table> <caption>This is title</caption> <thead> <tr class="header"> <th>item</th> <th>description</th> </tr> </thead> <tbody> <tr class="odd"> <td>aaa</td> <td>explanation</td> </tr> </tbody> </table>
Then, the other syntax is:
|item|description| |-----|-----| |aaa|explanation| Table: This is title
% pandoc table-post-title.md <table> <caption>This is title</caption> <thead> <tr class="header"> <th>item</th> <th>description</th> </tr> </thead> <tbody> <tr class="odd"> <td>aaa</td> <td>explanation</td> </tr> </tbody> </table>
Above samples were checked with:
% pandoc --version pandoc 2.18
% vfm --version 1.1.0
% vfm table-pre-title.md <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <p>: This is title</p> <table> <thead> <tr> <th>item</th> <th>description</th> </tr> </thead> <tbody> <tr> <td>aaa</td> <td>explanation</td> </tr> </tbody> </table> </body> </html>
% vfm table-post-title.md <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <table> <thead> <tr> <th>item</th> <th>description</th> </tr> </thead> <tbody> <tr> <td>aaa</td> <td>explanation</td> </tr> </tbody> </table> <p>Table: This is title</p> </body> </html>
The text was updated successfully, but these errors were encountered:
akabekobeko
No branches or pull requests
Goals
Support markup of pre/post table caption
Prior Art
pandoc supports the following syntax.
It will be converted into:
Then, the other syntax is:
It will be converted into:
Above samples were checked with:
VFM results
The text was updated successfully, but these errors were encountered: