Add IndieAuth WIP
Tweak the README
Update the README
BlobPad is a simple and minimalist note-taking app, built on top of BlobStash.
[ ]
/[x]
))Assuming you already have a configured BlobStash instance.
Add the app to your configuration file (blobstash.yaml
):
[...]
apps:
- name: blobpad
remote: "https://git.sr.ht/~tsileo/blobpad#master"
username: "yourusername"
password: "yourpassword"
Go to https://yourblobstashinstance.tld/api/apps/blobpad
.
TODO document custom domain support
BlobPad supports full-text searching with a custom query language:
+query
/-query
: will match a note only if it matches/does not match the query termquery
: the query term will be stemmed and matched with the note "text index""query"
: requires an exact match (even in the middle of word), can contains spaces+apple -orange
: returns notes containing apple
and does not contain orange
apple
: will match notes containing apple
and apples
"apple"
: will match only apple
(i.e. not apples
), and will also match pineapple
apple orange
: will match notes containg apple(s)
or orange(s)
apple orange -"pineapple"
: will match notes containing apple(s)
or orange(s)
; and that does not contains pineapple
"multiple words"
: will match notes containing exactly multiple words