diff options
Diffstat (limited to 'lisp/org/org-element.el')
-rw-r--r-- | lisp/org/org-element.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/org/org-element.el b/lisp/org/org-element.el index 9e5c4007bd7..d9c6522e2f0 100644 --- a/lisp/org/org-element.el +++ b/lisp/org/org-element.el @@ -22,7 +22,7 @@ ;;; Commentary: ;; -;; See <http://orgmode.org/worg/dev/org-syntax.html> for details about +;; See <https://orgmode.org/worg/dev/org-syntax.html> for details about ;; Org syntax. ;; ;; Lisp-wise, a syntax object can be represented as a list. @@ -3065,7 +3065,7 @@ Assume point is at the beginning of the link." (setq path (match-string-no-properties 1)) (setq contents-begin (match-beginning 1)) (setq contents-end (match-end 1))) - ;; Type 2: Standard link, i.e. [[http://orgmode.org][homepage]] + ;; Type 2: Standard link, i.e. [[https://orgmode.org][homepage]] ((looking-at org-bracket-link-regexp) (setq format 'bracket) (setq contents-begin (match-beginning 3)) @@ -3114,14 +3114,14 @@ Assume point is at the beginning of the link." (t (setq type "fuzzy") (setq path raw-link)))) - ;; Type 3: Plain link, e.g., http://orgmode.org + ;; Type 3: Plain link, e.g., https://orgmode.org ((looking-at org-plain-link-re) (setq format 'plain) (setq raw-link (match-string-no-properties 0)) (setq type (match-string-no-properties 1)) (setq link-end (match-end 0)) (setq path (match-string-no-properties 2))) - ;; Type 4: Angular link, e.g., <http://orgmode.org>. Unlike to + ;; Type 4: Angular link, e.g., <https://orgmode.org>. Unlike to ;; bracket links, follow RFC 3986 and remove any extra ;; whitespace in URI. ((looking-at org-angle-link-re) |