We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98a3b7d commit 90d188aCopy full SHA for 90d188a
lua/render-markdown/init.lua
@@ -83,6 +83,7 @@ local M = {}
83
---@field public start_col integer
84
---@field public end_col integer
85
---@field public destination string
86
+---@field public alias? string
87
88
---@class (exact) render.md.UserWikiLink
89
---@field public icon? string
lua/render-markdown/render/shortcut.lua
@@ -106,6 +106,7 @@ function Render:wiki_link()
106
start_col = self.node.start_col - 1,
107
end_col = self.node.end_col + 1,
108
destination = sections[1],
109
+ alias = sections[2],
110
}
111
112
-- Hide opening & closing outer brackets
0 commit comments