From 5f2f792037ccbea4d83401f057ed58097610f256 Mon Sep 17 00:00:00 2001 From: eni <129673786+enitama@users.noreply.github.com> Date: Mon, 3 Apr 2023 00:11:33 +0900 Subject: [PATCH 1/5] Update link to Community Toolkit Contributing.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 97552ff97..0edf41b75 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to the Windows Community Toolkit Documentation -Please visit the [contribution guidelines](https://github.com/windows-toolkit/WindowsCommunityToolkit/blob/master/contributing.md) for the Windows Community Toolkit. +Please visit the [contribution guidelines](https://github.com/CommunityToolkit/WindowsCommunityToolkit/blob/main/Contributing.md) for the Windows Community Toolkit. Documentation is **required** when adding, removing, or updating a control or an API in the Windows Community Toolkit. To update the documentation, you must submit a separate Pull Request in this repository as well (use the *master* branch for typos/improvements and *dev* for new features). From 5c1fb0248da05b47a5b4f1ec7b4e00a5d68332dc Mon Sep 17 00:00:00 2001 From: Rachel Price <52579263+raprice@users.noreply.github.com> Date: Thu, 27 Jul 2023 08:56:11 -0700 Subject: [PATCH 2/5] Update docfx.json Use Windows header in order to meet platform requirements --- docs/docfx.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docfx.json b/docs/docfx.json index 04c073a38..167389d19 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -41,7 +41,7 @@ "feedback_system": "GitHub", "feedback_github_repo": "MicrosoftDocs/WindowsCommunityToolkitDocs", "feedback_product_url": "https://github.com/windows-toolkit/WindowsCommunityToolkit/issues", - "uhfHeaderId": "MSDocsHeader-UWP-Community", + "uhfHeaderId": "MSDocsHeader-Windows", "ms.topic": "article", "ms.prod": "dotnet-communitytoolkit", "products": ["https://authoring-docs-microsoft.poolparty.biz/devrel/bcbcbad5-4208-4783-8035-8481272c98b8"], From 4e9ce19187e2d1ff73ca58012ddeabc62bfa0c9e Mon Sep 17 00:00:00 2001 From: Docs Allowlist Management Date: Sat, 13 Jan 2024 03:46:34 +0000 Subject: [PATCH 3/5] In all content, remove ms.prod = dotnet-communitytoolkit, Replace with ms.service = dotnet-communitytoolkit --- docs/docfx.json | 3 +-- dotnet/docfx.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/docfx.json b/docs/docfx.json index 04c073a38..668693d22 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -33,7 +33,7 @@ "overwrite": [], "externalReference": [], "globalMetadata": { - "ms.technology": "windows-community-toolkit", + "ms.service": "dotnet-communitytoolkit", "titleSuffix": "Windows Community Toolkit", "searchScope": [ "windows-toolkit" @@ -43,7 +43,6 @@ "feedback_product_url": "https://github.com/windows-toolkit/WindowsCommunityToolkit/issues", "uhfHeaderId": "MSDocsHeader-UWP-Community", "ms.topic": "article", - "ms.prod": "dotnet-communitytoolkit", "products": ["https://authoring-docs-microsoft.poolparty.biz/devrel/bcbcbad5-4208-4783-8035-8481272c98b8"], "keywords": "windows uwp community toolkit", "author": "michael-hawker", diff --git a/dotnet/docfx.json b/dotnet/docfx.json index d8b4284eb..0f4c4ac70 100644 --- a/dotnet/docfx.json +++ b/dotnet/docfx.json @@ -45,13 +45,12 @@ "xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ], "externalReference": [], "globalMetadata": { + "ms.service": "dotnet-communitytoolkit", "breadcrumb_path": "~/breadcrumb/toc.yml", "extendBreadcrumb": true, "apiPlatform": "dotnet", "ms.topic": "managed-reference", - "ms.prod": "dotnet-communitytoolkit", "products": ["https://authoring-docs-microsoft.poolparty.biz/devrel/bcbcbad5-4208-4783-8035-8481272c98b8"], - "ms.technology": "windows-community-toolkit", "ms.author": "nikolame", "author": "dotnet-bot" }, From 9e970a8b19158d66b8a51dd4fa4e36ae43f84578 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Mon, 4 Mar 2024 13:58:30 -0800 Subject: [PATCH 4/5] Update markdownlint.yml --- .github/workflows/markdownlint.yml | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/markdownlint.yml b/.github/workflows/markdownlint.yml index 4dc5c1878..1e6c6a0fb 100644 --- a/.github/workflows/markdownlint.yml +++ b/.github/workflows/markdownlint.yml @@ -16,17 +16,16 @@ on: jobs: lint: - runs-on: ubuntu-latest steps: - - uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 #@v2 - - name: Use Node.js - uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d #@v1 - with: - node-version: 12.x - - name: Run Markdownlint - run: | - echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" - npm i -g markdownlint-cli - markdownlint "**/*.md" + - uses: actions/checkout@v4.1.1 + - name: Use Node.js + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 + with: + node-version: 16.x + - name: Run Markdownlint + run: | + echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" + npm i -g markdownlint-cli + markdownlint "**/*.md" From e8d3ebeab4a8b728f599036d1380fe37d69f9a95 Mon Sep 17 00:00:00 2001 From: Matt Wojciakowski Date: Mon, 4 Mar 2024 14:50:41 -0800 Subject: [PATCH 5/5] Set MD 0055 and MD 0056 to false in markdown lint config --- .markdownlint.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.markdownlint.json b/.markdownlint.json index ba62b95ff..3473506af 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -22,5 +22,9 @@ }, "MD048": { "style": "backtick" + }, + { + "MD0055": false, + "MD0056": false } -} \ No newline at end of file +}