2021-04-30 21:01:08 +00:00
|
|
|
# notes2web
|
|
|
|
|
2021-08-24 14:46:24 +00:00
|
|
|
View your notes as a static html site. Browse a live sample of it [here](https://notes.alv.cx).
|
2021-04-30 21:01:08 +00:00
|
|
|
|
2021-05-01 11:04:45 +00:00
|
|
|
![](./screenshot.png)
|
|
|
|
|
2022-11-10 16:46:59 +00:00
|
|
|
Tested with [pandoc v2.19.2](https://github.com/jgm/pandoc/releases/tag/2.19.2).
|
|
|
|
|
2021-06-29 18:27:31 +00:00
|
|
|
|
|
|
|
## Why?
|
|
|
|
|
|
|
|
I want to be able to view my notes in a more convenient way.
|
|
|
|
I was already writing them in Pandoc markdown and could view them as PDFs but that wasn't quite
|
|
|
|
doing it for me:
|
|
|
|
|
|
|
|
- It was inconvenient to flick through multiple files of notes to find the right PDF
|
|
|
|
- It was annoying to sync to my phone
|
|
|
|
- PDFs do not scale so they were hard to read on smaller screens
|
|
|
|
- Probably more reasons I can't think of right now
|
2021-09-01 12:34:19 +00:00
|
|
|
- Fun
|
2021-06-29 18:27:31 +00:00
|
|
|
|
|
|
|
|
2021-04-30 21:01:08 +00:00
|
|
|
## Install
|
|
|
|
|
2023-10-15 15:03:33 +00:00
|
|
|
0. Install [Pandoc](https://pandoc.org/index.html) and [Pip](https://github.com/pypa/pip), python3-dev, and a C compiler
|
2021-04-30 21:08:24 +00:00
|
|
|
1. Run `make install` as root
|
2021-04-30 21:01:08 +00:00
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
## Other Things to Know
|
|
|
|
|
2021-09-01 12:34:19 +00:00
|
|
|
- notes2web indexes [ATX-style headings](https://pandoc.org/MANUAL.html#atx-style-headings) for
|
|
|
|
searching
|
2021-08-21 02:20:23 +00:00
|
|
|
- notes2web attempts to display file history through the `git log` command
|
2021-09-01 17:26:18 +00:00
|
|
|
- notes2web looks for the plaintext file `LICENSE` in the root directory of your notes
|
|
|
|
|
2021-08-21 02:20:23 +00:00
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
## Custom Directory Index
|
|
|
|
|
|
|
|
To add custom content to a directory index, put it in a file called `index.md` under the directory.
|
|
|
|
|
|
|
|
You can set the following frontmatter variables to customise the directory index of a directory:
|
|
|
|
|
|
|
|
| variable | default value | description |
|
|
|
|
|------------------------|-------------------|--------------------------------------------------------------------------------------------|
|
|
|
|
| `tags` | `[]` | list of tags, used by search and inherited by any notes and subdirectories |
|
|
|
|
| `uuid` | none | unique id to reference directory, used for permalinking |
|
|
|
|
| `content_after_search` | `false` | show custom content in `index.md` after search bar and directory index |
|
|
|
|
| `automatic_index` | `true` | show the automatically generated directory index. required for search bar to function. |
|
|
|
|
| `search_bar` | `true` | show search bar to search directory items. requires `automatic_index` (enabled by default) |
|
|
|
|
|
|
|
|
|
|
|
|
## Notes Metadata
|
|
|
|
|
|
|
|
notes2web reads the following YAML [frontmatter](https://jekyllrb.com/docs/front-matter/) variables for metadata:
|
|
|
|
|
|
|
|
| variable | description |
|
|
|
|
|------------------|---------------------------------------------------------------------------------------|
|
|
|
|
| `author` | The person(s) who wrote the article |
|
|
|
|
| `tags` | A YAML list of tags which the article relates to - this is used for browsing and also |
|
|
|
|
| `title` | The title of the article |
|
|
|
|
| `uuid` | A unique identifier used for permalinks. |
|
|
|
|
| `lecture_slides` | a list of paths pointing to lecture slides used while taking notes |
|
|
|
|
| `lecture_notes` | a list of paths pointing to other notes used while taking notes |
|
|
|
|
|
|
|
|
## Permalinks
|
2022-04-03 21:44:17 +00:00
|
|
|
|
|
|
|
Permalinks are currently rather basic and requires JavaScript to be enabled on the local computer.
|
|
|
|
In order to identify documents between file changes, a unique identifier is used to identify a file.
|
|
|
|
|
|
|
|
This unique identifier can be generated using the `uuidgen` command in the `uuid-runtime` package or
|
|
|
|
`str(uuid.uuid())` in the `uuid` python package.
|
|
|
|
|
|
|
|
The included `n2w_add_uuid.py` will add a UUID to a markdown file which does not have a UUID in it
|
|
|
|
already.
|
|
|
|
Combine it with `find` to UUIDify all your markdown files (but make a backup first).
|
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
## Custom Styling
|
2022-11-11 12:06:46 +00:00
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
To completely replace the existing styling, set the environment variable `CSS_DIR` to another directory with
|
|
|
|
a file called `styles.css`.
|
2022-11-11 12:06:46 +00:00
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
To add additional styling, the default styling will attempt to import `styles.css` from the root of the notes
|
|
|
|
directory.
|
2022-11-11 12:06:46 +00:00
|
|
|
|
2021-08-21 02:20:23 +00:00
|
|
|
## CLI Usage
|
2021-04-30 21:01:08 +00:00
|
|
|
|
|
|
|
```
|
2021-06-29 19:27:32 +00:00
|
|
|
$ notes2web.py notes_directory
|
2021-04-30 21:01:08 +00:00
|
|
|
```
|
|
|
|
|
2021-06-29 18:17:44 +00:00
|
|
|
Output of `notes2web.py --help`:
|
2021-06-29 13:35:21 +00:00
|
|
|
|
2024-01-02 18:22:15 +00:00
|
|
|
TODO add cli output
|
2021-06-29 18:17:44 +00:00
|
|
|
|
|
|
|
The command will generate a website in the `output-dir` directory (`./web` by default).
|
|
|
|
It will then generate a list of all note files and put it in `index.html`.
|
2021-05-01 10:48:04 +00:00
|
|
|
|
2021-06-29 18:17:44 +00:00
|
|
|
Then you just have to point a webserver at `output-dir`.
|
2021-05-01 10:48:04 +00:00
|
|
|
|
2021-04-30 21:01:08 +00:00
|
|
|
## Uninstall
|
|
|
|
|
|
|
|
```
|
|
|
|
# make uninstall
|
|
|
|
```
|
2021-09-01 15:37:47 +00:00
|
|
|
|
|
|
|
## Acknowledgements
|
|
|
|
|
|
|
|
Default synatx highlighting is based off [Pygments](https://pygments.org/)' default theme and
|
|
|
|
made using Pandoc v2.7.2.
|
|
|
|
I found the theme [here](https://github.com/tajmone/pandoc-goodies/blob/master/skylighting/css/built-in-styles/pygments.css).
|
|
|
|
|
|
|
|
Pretty sure the link colours are taken from [thebestmotherfucking.website](https://thebestmotherfucking.website/).
|