To organize reading tasks, I use org-mode checkboxes in the following way:
* TODO author, book_title [3/12]
- [X] chapter_01
- [X] chapter_02
- [X] chapter_03
...
- [ ] chapter_12
Since it is tedious to write this up for every book, I was thinking of using yasnippets to come up with some interactive snippet that would take as argument the "n" number of chapters and produce something of this sort:
- [ ] ${1:chapter_title_01}
- [ ] ${2:chapter_title_02}
...
- [ ] ${n:chapter_title_0n}
that would allow me to input the chapter titles one by one.
My elisp knowledge is limited, so the question is: Has anybody succeeded in implementing something similar with yasnippets or else? Thanks!