├── README.md ├── index.html ├── todo.txt └── wik.manifest /README.md: -------------------------------------------------------------------------------- 1 | # wik 2 | 3 | *A ridiculously simple personal wiki.* 4 | 5 | Implemented in a single 160-line HTML file. 6 | 7 | Try it now: wik.netlify.com 8 | 9 | Bookmark it - it will keep working when you're offline. 10 | 11 | Aims: 12 | 13 | * Be really, really simple. 14 | * Save all data in browser localstorage 15 | * No separate 'edit mode' like most wikis. Pages are directly editable. 16 | * Work equally well on mobile and desktop. 17 | * Support browser navigation (back/forward/bookmark etc) 18 | * Store all data locally on device. 19 | * Decent keyboard navigation. 20 | * Work offline. 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | wik 6 | 7 | 8 | 45 | 46 | 47 | 48 | 49 |
50 | < 51 | # 52 | 53 |
54 | 56 | 57 | 159 | 160 | -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | - Icons look rubbish on FF 2 | - Namespaces? Could use url path. -------------------------------------------------------------------------------- /wik.manifest: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | # v9 3 | index.html --------------------------------------------------------------------------------