Vicky Chijwani
Vicky Chijwani
Closer.js currently supports more than 100 functions from `clojure.core`, but we need to add more to this collection. If someone wants to contribute, feel free to dive in! This is...
Right now closer.js does not support macros in any form -- instead macros like `when`, `and`, and `or` are [implemented as special forms](https://github.com/vickychijwani/closer.js/blob/1cf7770efc57ef39f21a772719aa13ffe1fbcff4/src/grammar.y#L219-L233). We need to figure out a way...
Pagination needs to be implemented. When the user scrolls down to the bottom, the next page of posts should be fetched and displayed. Linked: #102. The API for pagination is...
Somehow, inexplicably, Proguard has stopped working correctly sometime between commits 592abc3 (v1.0.1) and 2d3ea80 ([see diff here](https://github.com/vickychijwani/quill/compare/1.0.1...2d3ea80)). Login and revoke access token API calls are failing. Proguard is preferred because...
This requires very little effort and is probably useful for some people. In terms of design, this could be displayed in a faint color at the bottom of the editor...
Ideas for core editing paradigm: 1. WYSIWYG - Libs: [Knife](https://github.com/mthli/Knife), [Richeditor](https://github.com/wasabeef/richeditor-android) - Apps: [JotterPad](https://play.google.com/store/apps/details?id=com.jotterpad.x), [Notes.md](https://play.google.com/store/apps/details?id=com.jonuy.notesmd), [Draft](https://play.google.com/store/apps/details?id=com.mvilla.draft&hl=en), [Evernote](https://play.google.com/store/apps/details?id=com.evernote&hl=en) - [StackEdit](https://stackedit.io/) 2. Block-based (WYSIWYG or Markdown) - [Medium](https://play.google.com/store/apps/details?id=com.medium.reader) 3. http://blog.codinghorror.com/what-you-cant-see-you-cant-get/ - http://www.aviz.fr/gliimpse/...
Pro users would like the option to sign in to multiple ~~accounts~~ blogs and switch between them seamlessly. ---- Task list: - [x] [Rework storage architecture](https://github.com/vickychijwani/quill/wiki/Quill-v2#persistence-architecture) alongside other breaking changes...
This is essential for professional bloggers.
This is to address a UX issue when editing published posts: the user may forget to publish their changes if the post is lost in a huge list. The current...
As a user, I'd like to be able to customize the slug (URL) of a post before it is published. Related: #122.