diff --git a/README.org b/README.org index 45aa1fd..9538bd4 100644 --- a/README.org +++ b/README.org @@ -3742,15 +3742,17 @@ The following posts provide programming information: (defun org-yt-export (path desc backend _) "Export an \"YouTube\" PATH link according to DESC and BACKEND." (pcase backend - (`html - (format "" path desc)) - (`latex - (format "\\href{https://www.youtube.com/watch?v=%s}{%s}" path desc)) - (_ path))) + (`latex + (format "\\href{https://www.youtube.com/watch?v=%s}{%s}" path desc)) + (_ path))) (with-eval-after-load 'ol (org-link-set-parameters @@ -3849,6 +3851,7 @@ define the [[https://orgmode.org/][Org mode]] =kbd= macro in listing (defun by-backend-kbd-org-macro (keys) "Help for an org-export backend dependent \"#+macro: kbd\"." (by-backend + (ascii (format "`kbd(%s)'" keys)) (html (format "@@html:%s@@" (htmlize-protect-string keys))) (latex (format "@@latex:\\colorbox{PowderBlue}{\\texttt{%s}}@@" keys))))) #+end_src