diff options
Diffstat (limited to 'build-site.el')
| -rw-r--r-- | build-site.el | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build-site.el b/build-site.el new file mode 100644 index 0000000..c22b1b0 --- /dev/null +++ b/build-site.el @@ -0,0 +1,22 @@ +(require 'ox-publish) + +(setq org-html-validation-link nil + org-html-head-include-scripts nil + org-html-head-include-default-style nil) + +(setq org-publish-project-alist + (list + (list "lemur.tld" + :recursive t + :base-directory "./src" + :publishing-function 'org-html-publish-to-html + :publishing-directory "./public" + :with-author nil + :with-creator t + :with-toc nil + :section-numbers nil + :time-stamp-file nil))) + +(org-publish-all t) + +(message "Build done!") |
