File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- *render-markdown.txt* For NVIM v0.11.2 Last change: 2025 June 10
1+ *render-markdown.txt* For NVIM v0.11.2 Last change: 2025 June 11
22
33==============================================================================
44Table of Contents *render-markdown-table-of-contents*
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local state = require('render-markdown.state')
55local M = {}
66
77--- @private
8- M .version = ' 8.5.0 '
8+ M .version = ' 8.5.1 '
99
1010function M .check ()
1111 M .start (' version' )
Original file line number Diff line number Diff line change @@ -27,6 +27,10 @@ function Render:setup()
2727 autolink = true
2828 elseif self .node .type == ' image' then
2929 icon [1 ] = config .image
30+ local destination = self .node :child (' link_destination' )
31+ if destination then
32+ self .context .config :set_link_text (destination .text , icon )
33+ end
3034 elseif self .node .type == ' inline_link' then
3135 local destination = self .node :child (' link_destination' )
3236 if destination then
You can’t perform that action at this time.
0 commit comments