26 lines
862 B
Org Mode
26 lines
862 B
Org Mode
|
#+TITLE: Some Technicalities about Building My Work Page
|
||
|
|
||
|
* Removing the publish cache
|
||
|
Org-publish will not detect files being deleted from the output. To
|
||
|
force it to clear its caches, do the following:
|
||
|
#+BEGIN_SRC elisp
|
||
|
(org-publish-remove-all-timestamps)
|
||
|
#+END_SRC
|
||
|
|
||
|
* Possible colors for the banner
|
||
|
#+BEGIN_SRC css
|
||
|
background-color: azure;
|
||
|
background-color: lightcyan;
|
||
|
background-color: paleturquoise;
|
||
|
#+END_SRC
|
||
|
|
||
|
* References
|
||
|
** Org-mode
|
||
|
- https://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html
|
||
|
- https://orgmode.org/manual/Configuration.html#Configuration
|
||
|
- https://orgmode.org/manual/CSS-support.html#CSS-support
|
||
|
** Examples
|
||
|
- https://justin.abrah.ms/emacs/orgmode_static_site_generator.html
|
||
|
- https://bastibe.de/2013-11-13-blogging-with-emacs.html
|
||
|
- https://ogbe.net/blog/blogging_with_org.html
|