Function: markdown-follow-wiki-link-at-point

markdown-follow-wiki-link-at-point is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-follow-wiki-link-at-point &optional ARG)

Documentation

Find Wiki Link at point.

With prefix argument ARG, open the file in other window. See markdown-wiki-link-p and markdown-follow-wiki-link.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-follow-wiki-link-at-point (&optional arg)
  "Find Wiki Link at point.
With prefix argument ARG, open the file in other window.
See `markdown-wiki-link-p' and `markdown-follow-wiki-link'."
  (interactive "P")
  (if (markdown-wiki-link-p)
      (markdown-follow-wiki-link (markdown-wiki-link-link) arg)
    (user-error "Point is not at a Wiki Link")))