1.0.5 • Published 5 years ago

litto v1.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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.md
hoge.md
Done.

If you use --format, you can format the text with Prettier.

$ litto --format ./foo.md
# foo.md

- [ ] foo
- [ ] bar

License

MIT