Skip to content

Commit 935c2c7

Browse files
chore(release): 8.4.0
1 parent 006806e commit 935c2c7

File tree

4 files changed

+26
-16
lines changed

4 files changed

+26
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Pre-release
44

5+
## 8.4.0 (2025-05-08)
6+
57
### Features
68

79
- handle arbitrary block quote nesting nicely [#404](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/404)
@@ -31,6 +33,8 @@
3133
- handle spaces before atx headings [bd56575](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/bd5657594bf1a96b04f900c87e8d74226a54d832)
3234
- remove accidental vim.print [bff12b4](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/bff12b4655d1537cf0f10859fcd63ef2cec65010)
3335
- 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)
3438

3539
### Collaborator Shoutouts
3640

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Plugin to improve viewing Markdown files in Neovim
66

77
| Screenshot | Video |
88
| ---------- | --------- |
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) |
1111
| ![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) |
1313
| ![Latex](https://github.com/user-attachments/assets/7b859c0a-1bf6-4398-88b5-7bcde12f2390) | ![Latex](https://github.com/user-attachments/assets/9ef14030-f688-47fd-95ff-befab1253322) |
1414

1515
<!-- panvimdoc-ignore-end -->

demo/minit.lua

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,22 @@ require('lazy').setup({
2727
vim.cmd.colorscheme('tokyonight')
2828
end,
2929
},
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+
},
3046
{
3147
'nvim-treesitter/nvim-treesitter',
3248
build = ':TSUpdate',
@@ -44,19 +60,9 @@ require('lazy').setup({
4460
end,
4561
},
4662
{
47-
'nvim-lualine/lualine.nvim',
48-
dependencies = { 'nvim-tree/nvim-web-devicons' },
63+
'echasnovski/mini.nvim',
4964
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({})
6066
end,
6167
},
6268
{

lua/render-markdown/health.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local state = require('render-markdown.state')
55
local M = {}
66

77
---@private
8-
M.version = '8.3.30'
8+
M.version = '8.4.0'
99

1010
function M.check()
1111
M.start('version')

0 commit comments

Comments
 (0)