blob: 8a617c9c1d41514c35cada67e01bfffd0ccf2406 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Export files with Org mode
#
emacs -q --batch --eval "
(progn
(require 'ox-html)
(setq org-html-htmlize-output-type 'css)
(dolist (file command-line-args-left)
(with-current-buffer (find-file-noselect file)
(org-html-export-to-html))))
" "$@"
|