10 lines
179 B
EmacsLisp
10 lines
179 B
EmacsLisp
;; See still:
|
|
;; command-line-args
|
|
|
|
(require 'ox-hugo)
|
|
(defun export-run ()
|
|
(progn
|
|
(find-file "./log_tmp.org")
|
|
(org-hugo-export-as-md)
|
|
(write-file "./log_tmp.md")))
|