diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-09-19 11:26:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-09-19 11:26:23 +0200 |
commit | ad9713e2299c4139a5269f71d3c540f7b3f62054 (patch) | |
tree | c73e8c95b2a5c710c99fac0e4872dd35aa2ab2bb | |
parent | 11448e6ea4a231e0eb9aac1be896304a47056348 (diff) | |
download | markdown-rs-ad9713e2299c4139a5269f71d3c540f7b3f62054.tar.gz markdown-rs-ad9713e2299c4139a5269f71d3c540f7b3f62054.tar.bz2 markdown-rs-ad9713e2299c4139a5269f71d3c540f7b3f62054.zip |
Remove private APIs from site
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aed9aed..d5d378b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: - run: cargo test # - run: cargo install cargo-tarpaulin && cargo tarpaulin --out Xml # - uses: codecov/codecov-action@v1 - - run: cargo doc --document-private-items --no-deps --release + - run: cargo doc --no-deps --release - run: echo '<!doctypehtml><html lang=en><meta charset=utf8><title>Redirecting…</title><link rel=canonical href=https://wooorm.com/micromark-rs/micromark><script>location = "https://wooorm.com/micromark-rs/micromark"</script><meta http-equiv=refresh content=0;url=https://wooorm.com/micromark-rs/micromark><meta name=robots content=noindex><body><h1>Redirecting…</h1><p><a href=https://wooorm.com/micromark-rs/micromark>Click here if you are not redirected.</a>' > target/doc/index.html - name: Deploy uses: JamesIves/github-pages-deploy-action@v4 |