You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disable LaTeX support to avoid this warning by setting { latex = { enabled = false } }
render-markdown.nvim [executables] ~
WARNING latex2text: not installed
ADVICE:
Disable LaTeX support to avoid this warning by setting { latex = { enabled = false } }
render-markdown.nvim [conflicts] ~
OK headlines: not installed
OK obsidian: not installed
Plugin configuration
return {
"MeanderingProgrammer/render-markdown.nvim",
opts = {},
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
}
Plugin error log
None
Confirmations
I have updated this plugin to the latest version using my plugin manager
I have provided text for all screenshots & understand that my issue will be closed if I have not
Additional information
No response
The text was updated successfully, but these errors were encountered:
## Details
Issue: #191
When calulating the leading spaces for a table row to determine how much
to indent a border only the node text was used. However if tables are
indented enough under a list item a leading continuation node eats some
of the spaces. This does not happen consistently between the heading and
other rows resulting in the number of spaces appearing different. When
this occurs we assume the table is not properly aligned on the left and
do not render a border.
To fix this caclulate the number of leadings spaces using the entire
line for the row and not just the node text.
Other unrelated changes:
- Move treesitter queries out of treesitter module and into where they
are actually used
- Use the treesitter module to cache parsed queries to avoid parsing
more than once per unique query
- This also avoid needing to do a vim.schedule in our state setup,
instead the queries end up being naturally lazily evaluated
Neovim version (nvim -v)
0.10.1
Neovim distribution
LazyVim
Operating system
Arch x86_64
Terminal emulator / GUI
Alacritty/Kitty
Describe the bug
When tables are indented, the top and bottom borders are omitted:
Expected behavior
It should show the border
Healthcheck output
render-markdown: require("render-markdown.health").check()
render-markdown.nvim [version] ~
render-markdown.nvim [configuration] ~
render-markdown.nvim [nvim-treesitter] ~
render-markdown.nvim [executables] ~
render-markdown.nvim [conflicts] ~
Plugin configuration
return {
"MeanderingProgrammer/render-markdown.nvim",
opts = {},
dependencies = { "nvim-treesitter/nvim-treesitter", "echasnovski/mini.nvim" }, -- if you use the mini.nvim suite
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
}
Plugin error log
None
Confirmations
Additional information
No response
The text was updated successfully, but these errors were encountered: