File tree Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Expand file tree Collapse file tree 4 files changed +26
-16
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Pre-release
4
4
5
+ ## 8.4.0 (2025-05-08)
6
+
5
7
### Features
6
8
7
9
- handle arbitrary block quote nesting nicely [ #404 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/404 )
31
33
- handle spaces before atx headings [ bd56575] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/bd5657594bf1a96b04f900c87e8d74226a54d832 )
32
34
- remove accidental vim.print [ bff12b4] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/bff12b4655d1537cf0f10859fcd63ef2cec65010 )
33
35
- ignore callouts outside of quotes and checkboxes outside of lists [ b4016e8] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/b4016e812c9a18784d8c1c6b4f0b2858a4cf502d )
36
+ - support indentation for latex blocks [ #421 ] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/421 )
37
+ [ 006806e] ( https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/006806e71199544d40b5f5a62f7079467aeac97d )
34
38
35
39
### Collaborator Shoutouts
36
40
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ Plugin to improve viewing Markdown files in Neovim
6
6
7
7
| Screenshot | Video |
8
8
| ---------- | --------- |
9
- | ![ Heading] ( https://github.com/user-attachments/assets/36f0fbb6-99bc-4cb2-8f69-fbea3d10abf1 ) | ![ Heading] ( https://github.com/user-attachments/assets/e57a53ea-f0bf-48db-90c1-0c2365ab3c54 ) |
10
- | ![ Table] ( https://github.com/user-attachments/assets/cbb81758-820d-467c-bc44-07003cb532bb ) | ![ Table] ( https://github.com/user-attachments/assets/5cd2b69d-ef17-4c6e-9510-59ed10e385d5 ) |
9
+ | ![ Heading] ( https://github.com/user-attachments/assets/40655575-b091-4ab8-b830-38f8004d7746 ) | ![ Heading] ( https://github.com/user-attachments/assets/03f629ea-f6da-4f05-a035-827fd944e8be ) |
10
+ | ![ Table] ( https://github.com/user-attachments/assets/7d021918-e89c-4b7d-b33a-869390f9a826 ) | ![ Table] ( https://github.com/user-attachments/assets/fdbcfbfa-5f9e-49b7-8c19-f7e837979a7a ) |
11
11
| ![ Quote] ( https://github.com/user-attachments/assets/822ae62c-bc0f-40a7-b8bb-fb3a885a95f9 ) | ![ Quote] ( https://github.com/user-attachments/assets/aa002ac7-b30f-4079-bba9-505160a4ad78 ) |
12
- | ![ Callout] ( https://github.com/user-attachments/assets/397ddd7b-bb82-47d0-ad9d-bdbe2f9858d7 ) | ![ Callout] ( https://github.com/user-attachments/assets/250aaeda-6141-4f4c-b72c-103875ca6eb8 ) |
12
+ | ![ Callout] ( https://github.com/user-attachments/assets/e468a463-bc8d-420c-bb4c-da1263795092 ) | ![ Callout] ( https://github.com/user-attachments/assets/d56cc5c7-43cd-4ce7-ad33-6164c2e23875 ) |
13
13
| ![ Latex] ( https://github.com/user-attachments/assets/7b859c0a-1bf6-4398-88b5-7bcde12f2390 ) | ![ Latex] ( https://github.com/user-attachments/assets/9ef14030-f688-47fd-95ff-befab1253322 ) |
14
14
15
15
<!-- panvimdoc-ignore-end -->
Original file line number Diff line number Diff line change @@ -27,6 +27,22 @@ require('lazy').setup({
27
27
vim .cmd .colorscheme (' tokyonight' )
28
28
end ,
29
29
},
30
+ {
31
+ ' nvim-lualine/lualine.nvim' ,
32
+ dependencies = { ' nvim-tree/nvim-web-devicons' },
33
+ config = function ()
34
+ require (' lualine' ).setup ({
35
+ sections = {
36
+ lualine_a = { ' mode' },
37
+ lualine_b = { { ' filename' , path = 0 } },
38
+ lualine_c = {},
39
+ lualine_x = {},
40
+ lualine_y = {},
41
+ lualine_z = { ' location' },
42
+ },
43
+ })
44
+ end ,
45
+ },
30
46
{
31
47
' nvim-treesitter/nvim-treesitter' ,
32
48
build = ' :TSUpdate' ,
@@ -44,19 +60,9 @@ require('lazy').setup({
44
60
end ,
45
61
},
46
62
{
47
- ' nvim-lualine/lualine.nvim' ,
48
- dependencies = { ' nvim-tree/nvim-web-devicons' },
63
+ ' echasnovski/mini.nvim' ,
49
64
config = function ()
50
- require (' lualine' ).setup ({
51
- sections = {
52
- lualine_a = { ' mode' },
53
- lualine_b = { { ' filename' , path = 0 } },
54
- lualine_c = {},
55
- lualine_x = {},
56
- lualine_y = {},
57
- lualine_z = { ' location' },
58
- },
59
- })
65
+ require (' mini.icons' ).setup ({})
60
66
end ,
61
67
},
62
68
{
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local state = require('render-markdown.state')
5
5
local M = {}
6
6
7
7
--- @private
8
- M .version = ' 8.3.30 '
8
+ M .version = ' 8.4.0 '
9
9
10
10
function M .check ()
11
11
M .start (' version' )
You can’t perform that action at this time.
0 commit comments