Skip to content

Commit 39a84ae

Browse files
chore: update inline latex support doc
1 parent b02c8ef commit 39a84ae

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

doc/limitations.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
`LaTeX` formula evaluations are placed above text rather than overlayed.
88

99
A way around this is to use a separate plugin for `LaTeX` and disable that feature
10-
in this plugin.
10+
in this plugin. As examples you can use:
1111

12-
As an example you can use [latex.nvim](https://github.com/ryleelyman/latex.nvim):
12+
[latex.nvim](https://github.com/ryleelyman/latex.nvim)
1313

1414
```lua
1515
{
@@ -20,7 +20,18 @@ As an example you can use [latex.nvim](https://github.com/ryleelyman/latex.nvim)
2020
}
2121
```
2222

23-
Then disable `LaTeX` from this plugin:
23+
[nabla.nvim](https://github.com/jbyuki/nabla.nvim)
24+
25+
```lua
26+
{
27+
'jbyuki/nabla.nvim',
28+
config = function()
29+
require('nabla').enable_virt({ autogen = true })
30+
end,
31+
}
32+
```
33+
34+
In both cases you'll need to disable `LaTeX` for this plugin:
2435

2536
```lua
2637
require('render-markdown').setup({

0 commit comments

Comments
 (0)