emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Lei Zhe <lzhes43@gmail.com>
To: emacs-orgmode@gnu.org
Subject: [Patch]: Ignore search option when org-lint local file link
Date: Sun, 19 Jan 2025 17:49:35 +0800	[thread overview]
Message-ID: <CALjq+LbyX9y+cUoCGKX15TbrcvfDjwr1N2-+KghWm_OoSnw0AA@mail.gmail.com> (raw)

[-- 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


             reply	other threads:[~2025-01-19  9:51 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-19  9:49 Lei Zhe [this message]
2025-01-19  9:59 ` [Patch]: Ignore search option when org-lint local file link Ihor Radchenko
2025-01-19 11:37   ` Lei Zhe
2025-01-19 12:20     ` Ihor Radchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CALjq+LbyX9y+cUoCGKX15TbrcvfDjwr1N2-+KghWm_OoSnw0AA@mail.gmail.com \
    --to=lzhes43@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).