You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
# dillo-zet
|
|
|
|
Zettelkasten application for [Dillo][].
|
|
|
|
## Install from [git-ssb][]
|
|
```
|
|
git clone ssb://%R1c3tDmS57iZ5G+g4UkLSWQehG/WUVLd1Y9XkTlng8Y=.sha256 dillo-zet
|
|
cd dillo-zet
|
|
make install
|
|
dpid stop
|
|
```
|
|
You can also use `make link` instead of `make install`, to install via a symlink.
|
|
|
|
Then visit <dpi:/zet/> in Dillo.
|
|
|
|
## Usage
|
|
|
|
- <dpi:/zet/> - Main page (list all notes)
|
|
- <dpi:/zet/ID> - View a note
|
|
- <dpi:/zet/new> - Draft a new note
|
|
|
|
Notes are identified by a string of hexadecimal characters, prefixed by a section sign ("§"). The section sign is not included in the `dpi:/zet/` URL.
|
|
|
|
The note format is Markdown as parsed by the [sundown][] library, with some changes, e.g. to linkify dillo-zet ids, and to make it a little more like SSB markdown.
|
|
|
|
Notes are stored as plain text files in a `~/.zet` directory.
|
|
|
|
## Screenshot
|
|
|
|

|
|
|
|
[Dillo]: https://www.dillo.org/
|
|
[git-ssb]: %n92DiQh7ietE+R+X/I403LQoyf2DtR3WQfCkDKlheQU=.sha256
|
|
[sundown]: https://github.com/vmg/sundown
|
|
|
|
## License
|
|
|
|
Copyright 2020 Charles E. Lehner
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|