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
Issue: In Markdown output format right-aligned cells in pipe tables have no padding on the right side.
Here is a minimal example to reproduce the issue:
After converting file table.text containing a pipe table
table.text
| Right | Left | Center | Default | |--:|:--|:-:|--| | 12 | 12 | 12 | 12 | | 123 | 123 | 123 | 123 | | 1 | 1 | 1 | 1 |
using pandoc v2.9.1.1 with following command
pandoc -t markdown-simple_tables table.text
we get a nicely formatted pipe table, but with right-aligned cells having no padding on the right side:
| Right| Left | Center | Default | |------:|:-----|:------:|---------| | 12| 12 | 12 | 12 | | 123| 123 | 123 | 123 | | 1| 1 | 1 | 1 |
The text was updated successfully, but these errors were encountered:
247d8e8
No branches or pull requests
Issue: In Markdown output format right-aligned cells in pipe tables have no padding on the right side.
Here is a minimal example to reproduce the issue:
After converting file
table.text
containing a pipe tableusing pandoc v2.9.1.1 with following command
we get a nicely formatted pipe table, but with right-aligned cells having no padding on the right side:
The text was updated successfully, but these errors were encountered: