├── 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 |