litto
v1.0.5
Published
**li**st **t**o **to**do-list.
Readme
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 littoUsage
Create the Markdown file named foo.md like below:
# foo.md
- foo
- barIf 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
- [ ] barIf you use --write, you can rewrite the file with converted text.
$ litto --write ./hoge.md
hoge.md
Done.If you use --format, you can format the text with Prettier.
$ litto --format ./foo.md
# foo.md
- [ ] foo
- [ ] barLicense
MIT
