emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Eugen Stan <eugen@ieugen.ro>
To: emacs-orgmode@gnu.org
Subject: org-mode export to html fails for unknown link types - telephone links
Date: Fri, 21 Apr 2023 13:29:29 +0300	[thread overview]
Message-ID: <2b4a2c95-788a-fe15-1172-3a760e056317@ieugen.ro> (raw)

Hi,

I am building my wedding page with org mode. Yay!.
I tried to add telephone links so people can click on the link and it 
will do something useful.

I used this markup [[tel:(+40)55-555-555][(+40)55-555-555]] to produce 
something like <a href="tel:(+40)55-555-555">(+40)55-555-555</a> .

However It failed because the tel: is not recognized link.
I believe the default behavior of failing to export when encountering an 
unknown link type is not ok.

IMO org-mode export should allow export for unknown links.
Support for tel: links might be added to org-mode by default since it is 
simple to add and quite useful, at least in HTML export .
See https://css-tricks.com/the-current-state-of-telephone-links/ .

It seems it might work in PDF exports as well 
https://community.adobe.com/t5/acrobat-reader-discussions/how-to-make-clickable-phone-numbers-in-pdfs/m-p/5822600 
.

Regardless, having the export fail is a bug IMO.


To build my website I followed a slightly updated version of 
https://systemcrafters.net/publishing-websites-with-org-mode/building-the-site/ 
.

I made it work with some customization but I do believe the default

(require 'ox-publish)
(require 'ol)

(org-link-set-parameters "tel"
                          :export #'org-tel-export)

(defun org-tel-export (link description format _)
   "Export a tel link from Org files."
   (let ((path link)
         (desc (or description link)))
     (pcase format
       (`html (format "<a class=\"org-tel-href\" href=\"tel:%s\">%s</a>" 
path desc))
       (`latex (format "\\href{%s}{%s}" path desc))
       (`texinfo (format "@uref{%s,%s}" path desc))
       (`ascii (format "%s (%s)" desc path))
       (t path))))

(setq org-publish-project-alist
       `(("nunta-org-site"
          :recursive t
  ...... )

(org-publish-all t)


             reply	other threads:[~2023-04-22  8:08 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-21 10:29 Eugen Stan [this message]
2023-04-23 15:32 ` org-mode export to html fails for unknown link types - telephone links 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=2b4a2c95-788a-fe15-1172-3a760e056317@ieugen.ro \
    --to=eugen@ieugen.ro \
    --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).