This commit is contained in:
JMARyA 2023-11-06 09:36:42 +01:00
parent e76f1e4419
commit 526b699845
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 40 additions and 0 deletions

22
README.md Normal file
View file

@ -0,0 +1,22 @@
# mddiff
mddiff is a tool for comparing the frontmatter of two markdown files and generating a [JSON patch](https://jsonpatch.com/) file.
## Usage
```
Usage: mddiff [OPTIONS] <file> <file2>
Arguments:
<file> First File
<file2> Second File
Options:
-p, --pretty Output formatted json patch
-a, --add Only output add operations
-m, --modify Only output modify operations
-d, --delete Only output delete operations
-t, --test <key> <val> Add test case to json patch
-x, --exclude <JSONPATH> Exclude json path from diff
-k, --keys <JSONPATH> Only include the specified json paths in diff
```