From c5d910886d9d6ab80c3a5a8b276b435c3c2e1497 Mon Sep 17 00:00:00 2001 From: Astariul Date: Tue, 25 Jul 2023 16:42:08 -0400 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20Fix=20issue=20with=20the=20c?= =?UTF-8?q?ode=20reference=20in=20the=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/code_ref.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/code_ref.md b/docs/code_ref.md index 7fff326..e9042cd 100644 --- a/docs/code_ref.md +++ b/docs/code_ref.md @@ -3,28 +3,29 @@ ## Exposed classes ::: discord_interactive.help - rendering: + options: show_root_heading: False show_root_toc_entry: False + heading_level: 3 ::: discord_interactive.page - selection: + options: filters: ["!PageType"] - rendering: show_root_heading: False show_root_toc_entry: False + heading_level: 3 ## Private classes ::: discord_interactive.page - selection: + options: filters: ["PageType"] - rendering: show_root_heading: False show_root_toc_entry: False + heading_level: 3 ::: discord_interactive.link - rendering: + options: show_root_heading: False show_root_toc_entry: False heading_level: 3 From 100a1764f26b4c61b069f73aac7cb2c6e523361b Mon Sep 17 00:00:00 2001 From: Astariul Date: Tue, 25 Jul 2023 16:43:50 -0400 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=90=9B=20Fix=20github=20action=20for?= =?UTF-8?q?=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/mike_dev.yaml | 2 +- .github/workflows/mike_stable.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mike_dev.yaml b/.github/workflows/mike_dev.yaml index 77f240c..8b531e5 100644 --- a/.github/workflows/mike_dev.yaml +++ b/.github/workflows/mike_dev.yaml @@ -27,5 +27,5 @@ jobs: - name: Build docs and push with mike run: | mike deploy --push --update-aliases master - version=$(pip show pytere | grep Version | cut -d ' ' -f 2) + version=$(pip show discord-interactive | grep Version | cut -d ' ' -f 2) mike retitle --push master $version diff --git a/.github/workflows/mike_stable.yaml b/.github/workflows/mike_stable.yaml index 146017b..cf2badf 100644 --- a/.github/workflows/mike_stable.yaml +++ b/.github/workflows/mike_stable.yaml @@ -25,7 +25,7 @@ jobs: git config --global user.email docs@dummy.bot.com - name: Build docs and push with mike run: | - version=$(pip show pytere | grep Version | cut -d ' ' -f 2) + version=$(pip show discord-interactive | grep Version | cut -d ' ' -f 2) bversion=$(echo $version | cut -d '.' -f 1,2) mike deploy --push --update-aliases $bversion latest mike retitle --push latest $version