aboutsummaryrefslogtreecommitdiff
path: root/build-site.el
blob: c22b1b06f0cef44e0282d5ccaf12ac6e17518492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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!")