Skip to content

Commit

Permalink
release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
markusstraub committed Jul 15, 2022
1 parent ae0ac49 commit e83f1f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ flowchart LR
style MDSPLIT fill:#000,color:#0F0
```

**Split markdown from stdin**:

```bash
cat in.md | mdsplit --output out
```

## Development (Ubuntu 22.04)

Add the [deadsnakes PPA](https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mdsplit"
version = "0.3a"
version = "0.3"
description = "Split markdown files at headings"
readme = "README.md"
authors = ["Markus Straub"]
Expand Down
3 changes: 3 additions & 0 deletions test_mdsplit_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ def test_h3_split(tmp_path, script_runner):
assert ret.success
assert_same_file_list(tmp_path, "test_expected/by_h3/nested")
assert_same_file_contents(tmp_path, "test_expected/by_h3/nested")


# TODO how could we test stdin handling?

0 comments on commit e83f1f4

Please sign in to comment.