|
@@ -1208,6 +1208,12 @@ INFO is a plist holding contextual information. See
|
|
|
(let ((path (org-export-solidify-link-text path)))
|
|
|
(if (not desc) (format "@ref{%s}" path)
|
|
|
(format "@ref{%s,,%s}" path desc)))))))
|
|
|
+ ((member type '("info"))
|
|
|
+ (let* ((info-path (split-string path ":"))
|
|
|
+ (info-manual (car info-path))
|
|
|
+ (info-node (or (cadr info-path) "top"))
|
|
|
+ (title (or desc "")))
|
|
|
+ (format "@ref{%s,%s,,%s,}" info-node title info-manual)))
|
|
|
((member type '("fuzzy"))
|
|
|
(let ((destination (org-export-resolve-fuzzy-link link info)))
|
|
|
(case (org-element-type destination)
|