Skip to content

Commit

Permalink
fix: 色々
Browse files Browse the repository at this point in the history
  • Loading branch information
tuna2134 committed Dec 18, 2022
1 parent 669915c commit 25128aa
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mizu"
description = "Markdown library"
version = "0.2.0-alpha1"
version = "0.2.0-alpha2"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# mizu 💧

**Warning:** This library is now developing. Please use stable version.

[![Version](https://img.shields.io/pypi/v/mizu)](https://pypi.org/project/mizu/)
[![Downloads](https://pepy.tech/badge/mizu)](https://pepy.tech/project/mizu)
[![Downloads](https://pepy.tech/badge/mizu/month)](https://pepy.tech/project/mizu)
Expand Down Expand Up @@ -32,20 +34,22 @@ These performance test codes are in tests.
Basic:

```py
from mizu import parse
from mizu import Markdown


parse("# Hello tuna2134")
md = Markdown()
md.parse("# Hello tuna2134")
```

Extension:

```py
from mizu import parse_ext
from mizu import Markdown, Options


parse_ext("""
- [ ] test
- [ ] test2
md = Markdown(Options(tasklists=True))
md.parse("""
[ ] - hello
[ ] - hi
""")
```

0 comments on commit 25128aa

Please sign in to comment.