ソースを参照

Append fragment to file: links if present

* org-html.el (org-html-make-link): Append fragment to file: links if
present.

Patch by Daniel Clemente
Daniel Clemente 14 年 前
コミット
c486572df0
1 ファイル変更2 行追加1 行削除
  1. 2 1
      lisp/org-html.el

+ 2 - 1
lisp/org-html.el

@@ -763,7 +763,8 @@ MAY-INLINE-P allows inlining it as an image."
 	    ((or
 		(not type)
 		(string= type "http")
-		(string= type "https"))
+		(string= type "https")
+		(string= type "file"))
 	       (if fragment
 		  (setq thefile (concat thefile "#" fragment))))