~tsileo/blobpad

BlobPad is a simple note-taking app built on top of BlobStash.
Add IndieAuth WIP
Tweak the README
Update the README

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~tsileo/blobpad
read/write
git@git.sr.ht:~tsileo/blobpad

You can also use your local clone with git send-email.

#BlobPad

BlobPad is a simple and minimalist note-taking app, built on top of BlobStash.

#Features

  • Markdown support (with GFM code block and table support)
    • custom task list support (toggling checkboxes updates Markdown task bullets ([ ]/[x]))
    • syntax highlighting for code blocks
  • Full-text search support
  • Attachments support
    • Pictures are directly embedded/displayed into notes
    • But any file can be attached
  • Pinning support (notes staying on top)
  • Mobile-friendly UI
  • Not an SPA

#Screenshots

#Homepage

#New/Edit page

#Installation

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

#Searching notes

BlobPad supports full-text searching with a custom query language:

#Query language

  • +query/-query: will match a note only if it matches/does not match the query term
  • query: 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

#Sample queries

  • +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