Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/b-coimbra/org-scribbler-theme
Theme for org-mode HTML export
https://github.com/b-coimbra/org-scribbler-theme
emacs org-mode
Last synced: 4 months ago
JSON representation
Theme for org-mode HTML export
- Host: GitHub
- URL: https://github.com/b-coimbra/org-scribbler-theme
- Owner: b-coimbra
- Created: 2021-09-14T17:20:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-21T15:03:36.000Z (12 months ago)
- Last Synced: 2024-10-05T08:39:05.309Z (4 months ago)
- Topics: emacs, org-mode
- Language: CSS
- Homepage: https://wiki.metaphoric.dev
- Size: 30.3 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+TITLE: Scribbler Theme
Dark theme for org-mode HTML exports.
[[https://i.imgur.com/71uR2V6.png]]
Preview: [[https://wiki.metaphoric.dev][https://wiki.metaphoric.dev]]
* Usage
Import scribbler into your .org file by adding the following line in the header:
#+begin_src org
,#+setupfile: https://b-coimbra.github.io/org-scribbler-theme/scribbler.setup
#+end_srcThen export the file by using =C-c C-e #= or =M-x org-export-dispatch=
** Subtitle
Subtitles can be added with the following tag:
#+begin_src org
,#+subtitle: Some subtitle
#+end_src** Tags
Tags can be added by creating a =tags.json= file in the root of your .html files.
Example:
#+begin_src json
{
"tags": [
{
"name": "git",
"color": "#9c6464",
"files": ["git-hooks", "git"]
},
{
"name": "automation",
"files": ["git-hooks"]
},
{
"name": "linux",
"color": "#C95C70"
"files": ["linux", "tmux", "ssh"]
},
{
"name": "tools",
"color": "#36194C",
"files": ["tmux", "ssh", "docker", "git"]
}
]
}
#+end_src** Example configuration
#+begin_src org
,#+TITLE: Angular @framework
,#+SUBTITLE: Angular is a platform for building mobile and desktop web applications.
,#+DATE: <2021-09-11 Sat>
,#+AUTHOR: Bruno Coimbra (b-coimbra)
,#+EMAIL: [email protected]
,#+SETUPFILE: https://b-coimbra.github.io/org-scribbler-theme/scribbler.setup
#+end_src