Skip to content

Commit daaf7d7

Browse files
chore: update change log
1 parent c16c0bc commit daaf7d7

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,22 @@
2222
- update `lazy` preset to match `LazyVim` [4a28c13](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/4a28c135bc3548e398ba38178fec3f705cb26fe6)
2323
- latex position below [#347](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/347)
2424
[43a971e](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/43a971e7da82e5622797b36450424ebd66cc9046)
25+
- improve checkhealth [1ef7664](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/1ef766414d754007b265881fa43d1984b5901742)
26+
- after clear callback [#356](https://github.com/MeanderingProgrammer/render-markdown.nvim/pull/356)
27+
- process conceal_lines metadata for `0.11` [595ac4f](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/595ac4f7e7c0eaba7bf1d8fd6ec0f6ac91c7e33b)
2528

2629
### Bug Fixes
2730

2831
- update checkhealth to not rely on `nvim-treesitter` [#322](https://github.com/MeanderingProgrammer/render-markdown.nvim/pull/322)
2932
[e05a9f2](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/e05a9f22f31c088ece3fa5928daf546a015b66ee)
33+
- lsp hover doc for `0.11` [#333](https://github.com/MeanderingProgrammer/render-markdown.nvim/discussions/333)
34+
[b57d51d](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/b57d51d760f5e4f520414dbeb6dee3ec1ae07a83)
3035

3136
### Collaborator Shoutouts
3237

3338
- @dsully
3439
- @mcDevnagh
40+
- @filippo-biondi
3541

3642
## 8.0.0 (2025-02-06)
3743

doc/render-markdown.txt

-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,6 @@ Default Configuration ~
323323
render = function() end,
324324
-- Called after plugin clears a buffer
325325
clear = function() end,
326-
327326
},
328327
heading = {
329328
-- Turn on / off heading icon & background rendering

lua/render-markdown/health.lua

+1-1
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.0.15'
8+
M.version = '8.0.16'
99

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

lua/render-markdown/state.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ function M.validate()
335335
:check()
336336
end)
337337
:nested('on', function(on)
338-
on:type({ 'attach', 'render' , 'clear'}, 'function'):check()
338+
on:type({ 'attach', 'render', 'clear' }, 'function'):check()
339339
end)
340340
:nested('overrides', function(overrides)
341341
overrides

0 commit comments

Comments
 (0)