Skip to content

Commit e76eb2e

Browse files
chore: update org name for mini.nvim to nvim-mini
1 parent c203eae commit e76eb2e

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
- add cell_offset function to pipe_table configuration [e5c3c50](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/e5c3c500d66e9aaf04c116cdfdb0b040d56a1521)
1313
- inline render single line latex equations [#508](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/508)
1414
[b7dad79](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/b7dad793f4750b7e95884c0db374b917898a979b)
15+
- allow nested markdown to be skipped [#510](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/510)
16+
[c203eae](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/c203eae127bd3397985408038f4d74fc952532e2)
1517

1618
### Bug Fixes
1719

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Plugin to improve viewing Markdown files in Neovim
5858
- [yaml](https://github.com/tree-sitter-grammars/tree-sitter-yaml) (Optional):
5959
Used to render elements in `frontmatter` metadata
6060
- Icon provider plugin (Optional): Used for icon above code blocks
61-
- [mini.icons](https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-icons.md)
61+
- [mini.icons](https://github.com/nvim-mini/mini.nvim/blob/main/readmes/mini-icons.md)
6262
- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons)
6363
- System dependencies:
6464
- [pylatexenc](https://pypi.org/project/pylatexenc/) (Optional):
@@ -71,8 +71,8 @@ Plugin to improve viewing Markdown files in Neovim
7171
```lua
7272
{
7373
'MeanderingProgrammer/render-markdown.nvim',
74-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
75-
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
74+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
75+
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
7676
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
7777
---@module 'render-markdown'
7878
---@type render.md.UserConfig
@@ -94,8 +94,8 @@ This plugin is available on [LuaRocks](https://luarocks.org/modules/MeanderingPr
9494
use({
9595
'MeanderingProgrammer/render-markdown.nvim',
9696
after = { 'nvim-treesitter' },
97-
requires = { 'echasnovski/mini.nvim', opt = true }, -- if you use the mini.nvim suite
98-
-- requires = { 'echasnovski/mini.icons', opt = true }, -- if you use standalone mini plugins
97+
requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
98+
-- requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
9999
-- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
100100
config = function()
101101
require('render-markdown').setup({})
@@ -1708,7 +1708,7 @@ The table below shows all the highlight groups with their default link
17081708
> return {
17091709
> 'MeanderingProgrammer/render-markdown.nvim',
17101710
> cmd = { 'RenderMarkdown' },
1711-
> dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' },
1711+
> dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' },
17121712
> config = function()
17131713
> require('obsidian').get_client().opts.ui.enable = false
17141714
> vim.api.nvim_buf_clear_namespace(0, vim.api.nvim_get_namespaces()['ObsidianUI'], 0, -1)

demo/minit.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ require('lazy').setup({
6262
end,
6363
},
6464
{
65-
'echasnovski/mini.nvim',
65+
'nvim-mini/mini.nvim',
6666
config = function()
6767
require('mini.icons').setup({})
6868
end,
@@ -72,7 +72,7 @@ require('lazy').setup({
7272
dev = true,
7373
dependencies = {
7474
'nvim-treesitter/nvim-treesitter',
75-
'echasnovski/mini.nvim',
75+
'nvim-mini/mini.nvim',
7676
},
7777
config = function()
7878
require('render-markdown').setup({})

doc/limitations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ in this plugin. Different plugins will have different setups, below are some exa
9696
{ 'ryleelyman/latex.nvim', opts = {} },
9797
{
9898
'MeanderingProgrammer/render-markdown.nvim',
99-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' },
99+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' },
100100
opts = {
101101
latex = { enabled = false },
102102
win_options = { conceallevel = { rendered = 2 } },
@@ -112,7 +112,7 @@ in this plugin. Different plugins will have different setups, below are some exa
112112
{ 'jbyuki/nabla.nvim' },
113113
{
114114
'MeanderingProgrammer/render-markdown.nvim',
115-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' },
115+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' },
116116
opts = {
117117
latex = { enabled = false },
118118
win_options = { conceallevel = { rendered = 2 } },

doc/render-markdown.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Plugin to improve viewing Markdown files in Neovim
8686
- yaml <https://github.com/tree-sitter-grammars/tree-sitter-yaml> (Optional):
8787
Used to render elements in `frontmatter` metadata
8888
- Icon provider plugin (Optional): Used for icon above code blocks
89-
- mini.icons <https://github.com/echasnovski/mini.nvim/blob/main/readmes/mini-icons.md>
89+
- mini.icons <https://github.com/nvim-mini/mini.nvim/blob/main/readmes/mini-icons.md>
9090
- nvim-web-devicons <https://github.com/nvim-tree/nvim-web-devicons>
9191
- System dependencies:
9292
- pylatexenc <https://pypi.org/project/pylatexenc/> (Optional):
@@ -102,8 +102,8 @@ LAZY.NVIM *render-markdown-install-lazy.nvim*
102102
>lua
103103
{
104104
'MeanderingProgrammer/render-markdown.nvim',
105-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
106-
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
105+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' }, -- if you use the mini.nvim suite
106+
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.icons' }, -- if you use standalone mini plugins
107107
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
108108
---@module 'render-markdown'
109109
---@type render.md.UserConfig
@@ -128,8 +128,8 @@ PACKER.NVIM *render-markdown-install-packer.nvim*
128128
use({
129129
'MeanderingProgrammer/render-markdown.nvim',
130130
after = { 'nvim-treesitter' },
131-
requires = { 'echasnovski/mini.nvim', opt = true }, -- if you use the mini.nvim suite
132-
-- requires = { 'echasnovski/mini.icons', opt = true }, -- if you use standalone mini plugins
131+
requires = { 'nvim-mini/mini.nvim', opt = true }, -- if you use the mini.nvim suite
132+
-- requires = { 'nvim-mini/mini.icons', opt = true }, -- if you use standalone mini plugins
133133
-- requires = { 'nvim-tree/nvim-web-devicons', opt = true }, -- if you prefer nvim-web-devicons
134134
config = function()
135135
require('render-markdown').setup({})
@@ -1816,7 +1816,7 @@ OBSIDIAN.NVIM *render-markdown-info-obsidian.nvim*
18161816
return {
18171817
'MeanderingProgrammer/render-markdown.nvim',
18181818
cmd = { 'RenderMarkdown' },
1819-
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' },
1819+
dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-mini/mini.nvim' },
18201820
config = function()
18211821
require('obsidian').get_client().opts.ui.enable = false
18221822
vim.api.nvim_buf_clear_namespace(0, vim.api.nvim_get_namespaces()['ObsidianUI'], 0, -1)

tests/minimal_init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ vim.opt.rtp:prepend(get_path('plenary.nvim'))
2626
vim.cmd.runtime('plugin/plenary.vim')
2727

2828
require('nvim-treesitter')
29-
.install({ 'html', 'latex', 'markdown', 'markdown_inline' })
29+
.install({ 'html', 'latex', 'markdown', 'markdown_inline', 'yaml' })
3030
:wait()
3131

3232
vim.api.nvim_create_autocmd('FileType', {

0 commit comments

Comments
 (0)