changelog shortlog graph tags branches files raw help

Mercurial > core / changeset: publish updates

changeset 447: 1365263e8311
parent 446: e3a4fdf6104c
child 448: a37b1d3371fc
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 15 Jun 2024 18:41:15 -0400
files: emacs/default.el emacs/lib/publish.el
description: publish updates
     1.1--- a/emacs/default.el	Sat Jun 15 22:32:31 2024 +0000
     1.2+++ b/emacs/default.el	Sat Jun 15 18:41:15 2024 -0400
     1.3@@ -740,6 +740,12 @@
     1.4     (dolist (f files)
     1.5       (insert (concat "[[file:" f "][" (file-name-base f) "]]\n")))))
     1.6 
     1.7+(defun include-directory-org-files (&optional dir)
     1.8+  (interactive "D")
     1.9+  (let ((files (directory-files dir)))
    1.10+    (dolist (f files)
    1.11+      (insert (concat "#+INCLUDE: " f "\n")))))
    1.12+
    1.13 (defun org-todo-at-date (date)
    1.14   "create a todo entry for a given date."
    1.15   (interactive (list (org-time-string-to-time (org-read-date))))
     2.1--- a/emacs/lib/publish.el	Sat Jun 15 22:32:31 2024 +0000
     2.2+++ b/emacs/lib/publish.el	Sat Jun 15 18:41:15 2024 -0400
     2.3@@ -29,6 +29,7 @@
     2.4       org-html-scripts ""
     2.5       org-html-htmlize-output-type 'css
     2.6       org-export-htmlize-output-type 'css
     2.7+      org-export-allow-bind-keywords t
     2.8       org-html-doctype "html5"
     2.9       org-html-html5-fancy t
    2.10       org-html-validation-link nil