File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
lua/render-markdown/handler Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 40
40
- Improve lazy.nvim instructions [ #80 ] ( https://github.com/MeanderingProgrammer/markdown.nvim/pull/80 )
41
41
- Improve LaTeX compatibility [ #90 ] ( https://github.com/MeanderingProgrammer/markdown.nvim/pull/90 )
42
42
[ 695501b] ( https://github.com/MeanderingProgrammer/markdown.nvim/commit/695501bd98b1f2ec052889fc4faef24dedd7091b )
43
- - Heading block width: [ #94 ] ( https://github.com/MeanderingProgrammer/markdown.nvim/pull/94 )
43
+ - Heading block width [ #94 ] ( https://github.com/MeanderingProgrammer/markdown.nvim/pull/94 )
44
44
[ 426b135] ( https://github.com/MeanderingProgrammer/markdown.nvim/commit/426b13574c8264636e5660e5f5a3b4f5e3d5a937 )
45
+ - Alignment indicator for pipe tables [ #91 ] ( https://github.com/MeanderingProgrammer/markdown.nvim/issues/91 )
46
+ [ a273033] ( https://github.com/MeanderingProgrammer/markdown.nvim/commit/a27303384570b85ee4538fa5f30eb418fef01ec7 )
45
47
46
48
### Bug Fixes
47
49
Original file line number Diff line number Diff line change @@ -660,7 +660,7 @@ function M.render_table_full(buf, parsed_table)
660
660
661
661
-- Do not need to account for concealed / inlined text on delimiter row
662
662
local delim_width = str .width (parsed_table .delim .text )
663
- if delim_width ~= width (parsed_table . head ) or delim_width ~= width (last ) then
663
+ if delim_width ~= width (first ) or delim_width ~= width (last ) then
664
664
return {}
665
665
end
666
666
You can’t perform that action at this time.
0 commit comments