Note index

I like taking notes when reading something. Below are my notes on some books I've been on-and-off reading. No idea if anything here will be useful to anyone aside from me, but I do try to preserve the context (basically, the only principle I use when taking notes is something like "take notes like there's a very real possibility of becoming an amnesiac")

By the way, pages above have been generated using Emacs, org-mode, org-mode manual (use C-h i or the web-based version), and the Worg org-to-html exporting guide.


The configuration I use is:

org-publish-project-alist:

(setq org-html-scripts nil) (setq org-publish-project-alist '(("org-notes" :base-directory "~/org/website/" :base-extension "org" :publishing-directory "~/website/" :recursive t :publishing-function org-html-publish-to-html :headline-levels 4 :html-preamble "<p class=\"backlink\"><a href=\"index.html\">Go back to note index</a></p><p class=\"updatedate\">Page last updated: <i>%d</i></p><hr>" :html-postamble nil)))

Setup file/template:

#+options: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline #+options: author:t broken-links:nil c:nil creator:nil #+options: d:(not "LOGBOOK") date:t e:t email:nil f:t inline:t num:t #+options: p:nil pri:nil prop:nil stat:t tags:t tasks:t tex:t #+options: timestamp:t title:t toc:t todo:t |:t #+author: Kassy #+language: en #+select_tags: export #+exclude_tags: noexport #+creator: Emacs 27.2 (Org mode 9.4.4) #+OPTIONS: tex:t #+HTML_CONTAINER: div #+HTML_DOCTYPE: xhtml-strict #+HTML_HEAD: <link rel="shortcut icon" type="image/x-icon" href="../favicon.ico"> <link href="../style.css" rel="stylesheet"> #+MACRO: color @@html:<span style="color:$1">$2</span>@@ #+MACRO: imo @@html:<span style="color:#FAAA9B">$1</span>@@

Note: I still have to set #+title and #+date at the beginning of each file, and have to specify path to #+setupfile as well (for me it is #+SETUPFILE: ~/.emacs.d/org-templates/level-1.org)