litto

1.0.5 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i litto

Weekly Downloads

2

Version

1.0.5

License

MIT

Unpacked Size

177 kB

Total Files

13

Last publish

Collaborators

  • sosukesuzuki