Skip to content

Commit

Permalink
Merge pull request #25 from jofas/fix-toc-generation-for-clippy
Browse files Browse the repository at this point in the history
no-code-tag-removal option for gh-md-toc
  • Loading branch information
jofas authored Aug 4, 2024
2 parents 3446f9b + 22df0a8 commit 41189c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
cargo fmt
- name: Toc
run: |
curl https://raw.githubusercontent.com/ekalinin/github-markdown-toc/master/gh-md-toc -o gh-md-toc
curl https://raw.githubusercontent.com/jofas/github-markdown-toc/no-code-tag-removal/gh-md-toc -o gh-md-toc
chmod a+x gh-md-toc
./gh-md-toc --insert --no-backup --hide-footer --skip-header repo/README.md
./gh-md-toc --insert --no-backup --hide-footer --skip-header --no-code-tag-removal repo/README.md
rm gh-md-toc
- name: Apply cleanup
uses: EndBug/add-and-commit@v9
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ deserialization capabilities into the traits from `std`.

<!--ts-->
* [Serializing objects to json with rust std's fmt traits](#serializing-objects-to-json-with-rust-stds-fmt-traits)
* [DisplayAsJson](#displayasjson)
* [DebugAsJson](#debugasjson)
* [`DisplayAsJson`](#displayasjson)
* [`DebugAsJson`](#debugasjson)
* [Pretty json](#pretty-json)
* [Mixing Display and Debug](#mixing-display-and-debug)
* [Deserializing objects from json with rust std's FromStr trait](#deserializing-objects-from-json-with-rust-stds-fromstr-trait)
* [FromStrAsJson](#fromstrasjson)
* [Deserializing objects from json with rust std's `FromStr` trait](#deserializing-objects-from-json-with-rust-stds-fromstr-trait)
* [`FromStrAsJson`](#fromstrasjson)
<!--te-->


Expand Down

0 comments on commit 41189c8

Please sign in to comment.