* org-html.el (org-html-make-link): Append fragment to file: links if present. Patch by Daniel Clemente
@@ -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))))