Skip to content

Instantly share code, notes, and snippets.

@martinhansdk
Created November 21, 2017 22:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinhansdk/f81a5fdf340eab591e6df55645cfd22d to your computer and use it in GitHub Desktop.
Save martinhansdk/f81a5fdf340eab591e6df55645cfd22d to your computer and use it in GitHub Desktop.
org-html bugreport files

2017

2017-11 November

2017-11-15 Wednesday

Meeting with Bjørk

Entered on [2017-11-15 Wed 06:26]

Meeting notes.

Worked on supporting ä, ö, and ü

Entered on [2017-11-15 Wed 07:29]

Stuff.

(add-to-list 'load-path "~/.emacs.d/elpa/org-20171120")
(require 'ox-publish)
(setq org-agenda-files '("journal.org" "time.org"))
(setq org-link-file-path-type 'relative)
(setq org-publish-project-alist
'(
("org-notes"
:base-directory "."
:base-extension "org"
:publishing-directory "exported/"
:recursive t
:publishing-function org-html-publish-to-html
:headline-levels 4 ; Just the default for this project.
:auto-preamble t
)
("org-static"
:base-directory "."
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory "exported/"
:recursive t
:publishing-function org-publish-attachment
)
("org" :components ("org-notes" "org-static"))
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment