emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [Patch]: Ignore search option when org-lint local file link
@ 2025-01-19  9:49 Lei Zhe
  2025-01-19  9:59 ` Ihor Radchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Lei Zhe @ 2025-01-19  9:49 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 119 bytes --]

For the link [[file:example.pdf::2]], org-lint identifies it as an invalid link.
This patch aims to address the issue.

[-- Attachment #2: 0001-Check-local-file-link-ignoring-path-option.patch --]
[-- Type: application/octet-stream, Size: 828 bytes --]

From a194ca2c1f71b679e16db20b32634413623454d8 Mon Sep 17 00:00:00 2001
From: llcc <lzhes43@gmail.com>
Date: Sun, 19 Jan 2025 17:11:39 +0800
Subject: [PATCH] Check local file link ignoring path option

---
 lisp/org-lint.el | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lisp/org-lint.el b/lisp/org-lint.el
index 3ab718eac..083cb2c3d 100644
--- a/lisp/org-lint.el
+++ b/lisp/org-lint.el
@@ -728,6 +728,9 @@ Use :header-args: instead"
 	(pcase type
 	  ((or "attachment" "file")
 	   (let* ((path (org-element-property :path l))
+                  (path (if (string-match "::\\(.*\\)\\'" path)
+		            (substring path 0 (match-beginning 0))
+                          path))
 		  (file (if (string= type "file")
 			    path
                           (org-with-point-at (org-element-begin l)
-- 
2.37.2.windows.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-01-19 12:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-19  9:49 [Patch]: Ignore search option when org-lint local file link Lei Zhe
2025-01-19  9:59 ` Ihor Radchenko
2025-01-19 11:37   ` Lei Zhe
2025-01-19 12:20     ` Ihor Radchenko

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).