Run a demo
- Create a new documentation folder
$ mkdocs new demo - Create the index file
$ cd demo $ cd docs $ echo "This is the homepage where you can add links to favorite zettels for example" > index.md - Create a demo zettel file
$ cat > 20211122110202.md --- id: 20211122110202 title: Welcome to MkDocs Zettelkasten tags: [testing, unimportant] --- # Welcome to MkDocs Zettelkasten This is a zettel in form of a markdown file. --- web: [MkDocs Zettelkasten](https://github.com/buvis/mkdocs-zettelkasten) --- ^D
Important
The metadata has to be enclosed in --- lines, and must include id:, title: and tags: properties. Optionally, a footer enclosed in --- will be rendered in card's footer as a list of references.
- Edit
mkdocs.yamltheme: name: zettelkasten plugins: - tags - zettelkasten - Run the server:
$ mkdocs serve --livereload