litto
list to todo-list.
Overview
litto is the CLI tool to convert list to check-list in Markdown.
Install
You can install it with npm.
npm install -g litto
Usage
Create the Markdown file named foo.md
like below:
# foo.md - foo- bar
If you call litto command with foo.md
's path, the text converted to check-list will be outputted to console.
$ litto ./foo.md# foo.md - [ ] foo- [ ] bar
If you use --write
, you can rewrite the file with converted text.
$ litto --write ./hoge.mdhoge.mdDone.
If you use --format
, you can format the text with Prettier.
$ litto --format ./foo.md# foo.md - [ ] foo- [ ] bar
License
MIT