Function: markdown-wiki-link-link
markdown-wiki-link-link is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-wiki-link-link)
Documentation
Return the link part of the wiki link using current match data.
The location of the link component depends on the value of
markdown-wiki-link-alias-first.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-wiki-link-link ()
"Return the link part of the wiki link using current match data.
The location of the link component depends on the value of
`markdown-wiki-link-alias-first'."
(if markdown-wiki-link-alias-first
(or (match-string-no-properties 5) (match-string-no-properties 3))
(match-string-no-properties 3)))