Vlad

Results 55 comments of Vlad

For your bonus one, the implementation as is removes everything on the cursor line, the goal is to see the actual text. There is an exception for spacing elements to...

`icon and language in code blocks as well as in callouts`, how would you edit these if you can't see the underlying text?

I've made most decorations configurable in terms of what gets concealed on cursor column and what does not here: https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/fb6b3d145e5e12b838c0b84124354802f381b1af. This is managed through the `anti_conceal.ignore` property. So if you...

> Looking at the following gif now you can see for instance than in the code block the icon python bit is not hidden in normal mode but is not...

Added support for wikilinks: https://github.com/MeanderingProgrammer/markdown.nvim/commit/e6695b4ff330cf9c216fe5e40491cee39d93383a | Raw View | Rendered View | | --------- | --------------- | | ![raw-view](https://github.com/user-attachments/assets/126c8880-cf66-4179-a154-c2ec27e7deff) | ![rendered-view](https://github.com/user-attachments/assets/1d3ada1d-7ce9-417c-9330-949876177a83) |

@yongleyuan, everything you said is correct thanks for helping out! @guoliang, I've updated the health check logic to avoid the warning if the obsidian UI is disabled: https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/4d2aea341a5d0bf2a01adc0ad4ecf5d4877e1bd0 Previously you...

Thank you! For anyone that comes across this in the meantime you can add back the highlights provided by this plugin with: ```lua require('tokyonight').setup({ plugins = { markdown = true...

> How long will this pr merge? Sometime after folke gets back from vacation. End of month IIRC, but I'm sure he'll have a large queue and this is fairly...

Added support for this here: https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/0c6de743a8d3c61b87bc7db9ab97dcda12ca6818 You just need to supply an empty table to whatever property you want to disable, so in this case: ```lua require('render-markdown').setup({ heading = {...

What error? Yes it takes opts but that's more of a `lazy.nvim` thing than anything related to this plugin. Do you use `LazyVim` the distribution, not the package manager? If...