This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; org-airmail.el - Support for links to Airmail 3 messages in Org | |
(require 'org) | |
(org-add-link-type "airmail" 'org-airmail-open) | |
(defun org-airmail-open (url) | |
"Visit the Airmail message referenced by URL. | |
URL should be a vaid Airmail message url retrieved from Airmail with | |
'Copy Message Link'." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Pandoc Lua filter to include other Markdown files | |
--- | |
--- Usage: Use a special code block with class `include` to | |
--- include Markdown files. Each code line is treated as the | |
--- filename of a Markdown file, parsed as Markdown, and | |
--- included. Metadata from include files is discarded. | |
--- | |
--- Example: | |
--- | |
--- ``` {.include} |