Neovim version (nvim -v)
0.12.2
Neovim distribution
LazyVIM
Operating system
Linux (Arch, btw)
Terminal emulator / GUI
Alacritty
Describe the bug
Tables are not rendered correctly if the trailing pipe is omitted.
From GitHub-flawored markdown spec (common mark doesn't have tables):
A leading and trailing pipe is also recommended for clarity of reading, and if there’s otherwise parsing ambiguity.
Recommended - not required.
I usually omit the trailing pipes - the tables look ok in plain text without inserting dozens of empty spaces to align the right border.
Table like this should be valid and render correctly.
It looks good in plain text, without a need to insert dozens of spaces
| state | dscription
|--------|---
| open | port is accessible, and service is listening
| closed | port is accessible, but no service is listening
Expected behavior
Tables without a trailing pipe should be rendered correctly.
Healthcheck output
==============================================================================
render-markdown: 3 ⚠️
render-markdown.nvim [versions] ~
- ✅ OK neovim >= 0.11
- ✅ OK tree-sitter ABI: 15
- ✅ OK plugin: 8.13.0
render-markdown.nvim [configuration] ~
- ✅ OK valid
render-markdown.nvim [tree-sitter markdown] ~
- ✅ OK parser: installed
- ✅ OK ABI: 15
- ✅ OK highlights: ~/.local/share/nvim/site/queries/markdown/highlights.scm
- ✅ OK highlighter: enabled
render-markdown.nvim [tree-sitter markdown_inline] ~
- ✅ OK parser: installed
- ✅ OK ABI: 15
- ✅ OK highlights: ~/.local/share/nvim/site/queries/markdown_inline/highlights.scm
render-markdown.nvim [tree-sitter html] ~
- ✅ OK parser: installed
- ✅ OK ABI: 14
render-markdown.nvim [tree-sitter latex] ~
- ⚠️ WARNING parser: not installed
- ADVICE:
- disable latex support to avoid this warning
require("render-markdown").setup({
latex = { enabled = false },
})
- ⚠️ WARNING ABI: unknown
- ADVICE:
- disable latex support to avoid this warning
require("render-markdown").setup({
latex = { enabled = false },
})
render-markdown.nvim [tree-sitter yaml] ~
- ✅ OK parser: installed
- ✅ OK ABI: 15
render-markdown.nvim [icons] ~
- ✅ OK using: mini.icons
render-markdown.nvim [latex] ~
- ⚠️ WARNING none installed: { "utftex", "latex2text" }
- ADVICE:
- disable latex support to avoid this warning
require("render-markdown").setup({
latex = { enabled = false },
})
render-markdown.nvim [conflicts] ~
- ✅ OK headlines: not installed
- ✅ OK markview: not installed
- ✅ OK obsidian: not installed
Plugin configuration
config {
checkbox = {
bullet = true,
checked = {
icon = ""
},
custom = {
todo = {
rendered = ""
}
},
unchecked = {
icon = ""
}
},
code = {
border = "thin",
right_pad = 1,
width = "block"
},
file_types = {
[2] = "norg",
[3] = "rmd",
[4] = "org",
[5] = "codecompanion"
},
heading = {
icons = { vim.NIL, vim.NIL, vim.NIL, vim.NIL, vim.NIL, vim.NIL }
},
pipe_table = {
border_enabled = false
}
Plugin error log
Confirmations
Additional information
No response
Neovim version (nvim -v)
0.12.2
Neovim distribution
LazyVIM
Operating system
Linux (Arch, btw)
Terminal emulator / GUI
Alacritty
Describe the bug
Tables are not rendered correctly if the trailing pipe is omitted.
From GitHub-flawored markdown spec (common mark doesn't have tables):
Recommended - not required.
I usually omit the trailing pipes - the tables look ok in plain text without inserting dozens of empty spaces to align the right border.
Table like this should be valid and render correctly.
It looks good in plain text, without a need to insert dozens of spaces
Expected behavior
Tables without a trailing pipe should be rendered correctly.
Healthcheck output
Plugin configuration
Plugin error log
Confirmations
Additional information
No response