Skip to content

Commit 93dbd55

Browse files
chore: fix formatting and update changelog
1 parent cc2807c commit 93dbd55

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616

1717
- ignore empty output from latex converter [#535](https://github.com/MeanderingProgrammer/render-markdown.nvim/issues/535)
1818
[2064980](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/2064980580af7f00385859b6344c6a4737383257)
19+
- use nil if bg is missing in bg_as_fg [bfd67f1](https://github.com/MeanderingProgrammer/render-markdown.nvim/commit/bfd67f1402b97ac619cb538f4bbaed12a7fa89aa)
20+
- ctermbg heading borders being all white [#546](https://github.com/MeanderingProgrammer/render-markdown.nvim/pull/546)
21+
22+
### Collaborator Shoutouts
23+
24+
- @bew
1925

2026
## 8.9.0 (2025-10-06)
2127

doc/render-markdown.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*render-markdown.txt* For NVIM v0.11.4 Last change: 2025 October 24
1+
*render-markdown.txt* For NVIM v0.11.4 Last change: 2025 October 28
22

33
==============================================================================
44
Table of Contents *render-markdown-table-of-contents*

lua/render-markdown/core/colors.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ function M.bg_as_fg(highlight, force)
128128
ctermfg = hl.ctermbg,
129129
})
130130
M.cache.bg_as_fg[name] = {
131-
hl = highlight,
132-
visible = hl.bg ~= nil or hl.ctermbg ~= nil,
131+
hl = highlight,
132+
visible = hl.bg ~= nil or hl.ctermbg ~= nil,
133133
}
134134
end
135135
return M.cache.bg_as_fg[name].visible and name or nil

lua/render-markdown/health.lua

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

88
---@private
9-
M.version = '8.9.10'
9+
M.version = '8.9.11'
1010

1111
function M.check()
1212
M.start('versions')

0 commit comments

Comments
 (0)