Skip to content

Instantly share code, notes, and snippets.

@briandominick
briandominick / asciidoc-static.adoc
Last active March 11, 2024 18:24
Static Site Generators with AsciiDoc Support

There are 28 static site generators that support AsciiDoc sourcing.

@ephsmith
ephsmith / org-airmail.el
Last active September 6, 2023 09:57
org-airmail.el adds an org-hyperlink handler for Airmail email URLs
;;; 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'."
@mojavelinux
mojavelinux / a-input.adoc
Last active August 29, 2015 13:56
Asciidoctor textql extension example
[textql%header, "select name, title, length(name) from tbl where title like 'C%'", "Name,Title,Length of Name"]
....
id,name,title
1,Paul,CEO
2,Jeff,CTO
3,Dmitri,Vice President
....