MeanderingProgrammer / render-markdown.nvim

Plugin to improve viewing Markdown files in Neovim
MIT License
1.77k stars 39 forks source link

bug: Indented tables do not view correctly #191

Closed MinaMatta98 closed 1 month ago

MinaMatta98 commented 1 month ago

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:

image

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

MeanderingProgrammer commented 1 month ago

Fixed here: https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/efb4c48c3b4de7cc3d01ec54d794a2509ae0c1c8

MinaMatta98 commented 1 month ago

Can confirm fixed :).

Thank you!