# litto

> **li**st **t**o **to**do-list.

Latest version **1.0.5** (published 2019-06-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install litto
pnpm add litto
yarn add litto
bun add litto
```

Provides the command `litto`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.5 |
| Published | 2019-06-29 |
| First published | 2019-03-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 172.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sosuke Suzuki |
| Maintainers | sosukesuzuki |
| Keywords | markdown, nodejs |

## Links

- npm: https://www.npmjs.com/package/litto
- Repository: https://github.com/sosukesuzuki/litto
- Homepage: https://github.com/sosukesuzuki/litto#readme
- Issues: https://github.com/sosukesuzuki/litto/issues
- npm.io page: https://npm.io/package/litto

## Dependencies (5)

- [unified](https://npm.io/package/unified.md) ^7.1.0
- [prettier](https://npm.io/package/prettier.md) ^1.16.4
- [commander](https://npm.io/package/commander.md) ^2.19.0
- [remark-parse](https://npm.io/package/remark-parse.md) ^6.0.3
- [remark-stringify](https://npm.io/package/remark-stringify.md) ^6.0.4

## Alternatives

- [@mdxeditor/editor](https://npm.io/package/@mdxeditor/editor.md) — 962.4K weekly downloads
- [mmdb-lib](https://npm.io/package/mmdb-lib.md) — 680.9K weekly downloads
- [playcanvas](https://npm.io/package/playcanvas.md) — 36.2K weekly downloads
- [@glw907/cairn-cms](https://npm.io/package/@glw907/cairn-cms.md) — 967 weekly downloads
- [markdown-to-confluence](https://npm.io/package/markdown-to-confluence.md) — 103 weekly downloads

## Recent versions

- 1.0.5 (latest) — 2019-06-29
- 1.0.4 — 2019-03-30
- 1.0.3 — 2019-03-30
- 1.0.2 — 2019-03-29
- 1.0.1 — 2019-03-29
- 1.0.0 — 2019-03-29

## README

# litto

**li**st **t**o **to**do-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:

```md
# 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.

```sh
$ litto ./foo.md
# foo.md

-   [ ] foo
-   [ ] bar
```

If you use `--write`, you can rewrite the file with converted text.

```sh
$ litto --write ./hoge.md
hoge.md
Done.
```

If you use `--format`, you can format the text with [Prettier](https://github.com/prettier/prettier).

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

- [ ] foo
- [ ] bar
```

## License

MIT

---
_Source: https://npm.io/package/litto · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
