From 50f3789bb5f1f23a9f29a2d31094d63ebe97bd7b Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Sun, 31 Mar 2024 09:10:33 -0500 Subject: [PATCH] prettier --- .../ISSUE_TEMPLATE/1_Content_Correction.yml | 1 - .github/ISSUE_TEMPLATE/2_Website_Issues.yml | 1 - .github/dependabot.yml | 3 - .github/workflows/build-offline.yml | 6 +- .github/workflows/build.yml | 6 +- .github/workflows/deploy.yml | 4 +- .github/workflows/download-repo.yml | 2 +- .github/workflows/publish-mirror.yml | 2 +- .github/workflows/publish-pr.yml | 1 - .github/workflows/publish-release.yml | 2 +- .github/workflows/test-lint.yml | 22 ++- .github/workflows/upload-crowdin.yml | 31 ++- .vscode/settings.json | 3 +- config/layouts/home.yml | 3 - config/layouts/page.yml | 3 - config/layouts/pride.yml | 3 - config/mkdocs-common.yml | 184 +++++++++--------- config/mkdocs-offline.yml | 1 - config/mkdocs.en.yml | 2 +- config/mkdocs.es.yml | 4 +- config/mkdocs.fr.yml | 4 +- config/mkdocs.he.yml | 4 +- config/mkdocs.it.yml | 4 +- config/mkdocs.nl.yml | 4 +- config/mkdocs.ru.yml | 4 +- config/mkdocs.zh-Hant.yml | 4 +- 26 files changed, 155 insertions(+), 153 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_Content_Correction.yml b/.github/ISSUE_TEMPLATE/1_Content_Correction.yml index 897fcbc9aa..458b8fd827 100644 --- a/.github/ISSUE_TEMPLATE/1_Content_Correction.yml +++ b/.github/ISSUE_TEMPLATE/1_Content_Correction.yml @@ -22,7 +22,6 @@ name: "Content Correction" description: Report any inaccurate, incorrect, or outdated information on the website. labels: ["t:correction"] body: - - type: markdown attributes: value: | diff --git a/.github/ISSUE_TEMPLATE/2_Website_Issues.yml b/.github/ISSUE_TEMPLATE/2_Website_Issues.yml index 7b94fe4d86..8b88b38a94 100644 --- a/.github/ISSUE_TEMPLATE/2_Website_Issues.yml +++ b/.github/ISSUE_TEMPLATE/2_Website_Issues.yml @@ -24,7 +24,6 @@ labels: ["t:bug"] assignees: - jonaharagon body: - - type: markdown attributes: value: | diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 30be8a1871..f349012ef8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -21,7 +21,6 @@ version: 2 registries: - github-privacyguides: type: git url: https://github.com @@ -29,7 +28,6 @@ registries: password: ${{secrets.REPO_PAT}} updates: - # Maintain dependencies for GitHub Actions - package-ecosystem: "github-actions" directory: "/" @@ -51,7 +49,6 @@ updates: interval: "monthly" labels: - "fix:submodules" - # Disabled because some updates tend to remove needed dependencies for some reason # # Maintain dependencies for pipenv diff --git a/.github/workflows/build-offline.yml b/.github/workflows/build-offline.yml index 67b8d16717..553f495aa4 100644 --- a/.github/workflows/build-offline.yml +++ b/.github/workflows/build-offline.yml @@ -36,7 +36,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - persist-credentials: 'false' + persist-credentials: "false" - uses: actions/download-artifact@v4 with: @@ -52,8 +52,8 @@ jobs: - name: Python setup uses: actions/setup-python@v5 with: - python-version: '3.8' - cache: 'pipenv' + python-version: "3.8" + cache: "pipenv" - uses: actions/cache/restore@v4.0.2 with: diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9b675602a7..7d5c7ae287 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,7 +54,7 @@ jobs: with: repository: ${{ inputs.repo }} ref: ${{ inputs.ref }} - persist-credentials: 'false' + persist-credentials: "false" fetch-depth: 0 - uses: actions/download-artifact@v4 @@ -76,8 +76,8 @@ jobs: - uses: actions/setup-python@v5 with: - python-version: '3.8' - cache: 'pipenv' + python-version: "3.8" + cache: "pipenv" - uses: actions/cache/restore@v4.0.2 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c60db07da1..50acce792c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -142,8 +142,8 @@ jobs: # Grant GITHUB_TOKEN the permissions required to make a Pages deployment permissions: contents: read - pages: write # to deploy to Pages - id-token: write # to verify the deployment originates from an appropriate source + pages: write # to deploy to Pages + id-token: write # to verify the deployment originates from an appropriate source steps: - uses: actions/configure-pages@v5 diff --git a/.github/workflows/download-repo.yml b/.github/workflows/download-repo.yml index cf98a121de..161e566651 100644 --- a/.github/workflows/download-repo.yml +++ b/.github/workflows/download-repo.yml @@ -40,7 +40,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 with: - repository: 'privacyguides/${{ inputs.repo }}' + repository: "privacyguides/${{ inputs.repo }}" path: repo-${{ inputs.repo }} ssh-key: ${{ secrets.ACTIONS_SSH_KEY }} diff --git a/.github/workflows/publish-mirror.yml b/.github/workflows/publish-mirror.yml index 66f38d7544..116ae80c20 100644 --- a/.github/workflows/publish-mirror.yml +++ b/.github/workflows/publish-mirror.yml @@ -23,7 +23,7 @@ name: 🪞 Push to Mirrors permissions: contents: read -on: [ push, delete, create ] +on: [push, delete, create] # Ensures that only one mirror task will run at a time. concurrency: diff --git a/.github/workflows/publish-pr.yml b/.github/workflows/publish-pr.yml index 40bc40b15f..feaf79e533 100644 --- a/.github/workflows/publish-pr.yml +++ b/.github/workflows/publish-pr.yml @@ -84,7 +84,6 @@ jobs: env: address: ${{ needs.deploy.outputs.netlify_preview_address }} steps: - - uses: thollander/actions-comment-pull-request@v2.5.0 with: message: | diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 917652ce71..7faa5aab1d 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -23,7 +23,7 @@ name: 📦 Release on: push: tags: - - '*' + - "*" permissions: contents: write diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index 3a3ec84dff..9ad847da90 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -29,28 +29,36 @@ on: branches: - main push: - branches: - - main concurrency: group: ${{ github.ref }}-${{ github.workflow }} cancel-in-progress: true -jobs: +env: + MAIN_BRANCH: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} +jobs: megalinter: + name: MegaLinter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - name: MegaLinter - id: ml + - if: ${{ env.MAIN_BRANCH }} + uses: actions/checkout@v4 + + - if: ${{ !env.MAIN_BRANCH }} + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - id: ml # You can override MegaLinter flavor used to have faster performances # More info at https://megalinter.io/flavors/ uses: oxsecurity/megalinter/flavors/documentation@v7.10.0 env: # All available variables are described in documentation # https://megalinter.io/configuration/ - VALIDATE_ALL_CODEBASE: true + # Validates all source when push on main, else just the git diff with main. + VALIDATE_ALL_CODEBASE: ${{ env.MAIN_BRANCH }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # ADD YOUR CUSTOM ENV VARIABLES HERE OR DEFINE THEM IN A FILE .mega-linter.yml AT THE ROOT OF YOUR REPOSITORY DISABLE: COPYPASTE,SPELL,HTML diff --git a/.github/workflows/upload-crowdin.yml b/.github/workflows/upload-crowdin.yml index c0bec5124e..03a919fdd2 100644 --- a/.github/workflows/upload-crowdin.yml +++ b/.github/workflows/upload-crowdin.yml @@ -26,7 +26,7 @@ permissions: on: workflow_dispatch: push: - branches: [ main ] + branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -37,18 +37,17 @@ jobs: runs-on: ubuntu-latest steps: - - - name: Checkout - uses: actions/checkout@v4 - - - name: crowdin action - uses: crowdin/github-action@v1.20.1 - with: - upload_sources: true - upload_sources_args: '--auto-update --delete-obsolete' - download_translations: false - config: crowdin.yml - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} - CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} + - name: Checkout + uses: actions/checkout@v4 + + - name: crowdin action + uses: crowdin/github-action@v1.20.1 + with: + upload_sources: true + upload_sources_args: "--auto-update --delete-obsolete" + download_translations: false + config: crowdin.yml + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/.vscode/settings.json b/.vscode/settings.json index 041f4be59e..efd323d3dd 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -45,5 +45,6 @@ "tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format", "tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji", "tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg" - ] + ], + "editor.formatOnSave": true } diff --git a/config/layouts/home.yml b/config/layouts/home.yml index 6f9d259402..d42c5d8de9 100644 --- a/config/layouts/home.yml +++ b/config/layouts/home.yml @@ -1,5 +1,4 @@ definitions: - - &background_color >- #FFD06F @@ -35,7 +34,6 @@ definitions: # Meta tags tags: - # Open Graph og:type: website og:title: *page_title_with_site_name @@ -59,7 +57,6 @@ tags: # Card size and layers size: { width: 1200, height: 630 } layers: - # Background - background: color: *background_color diff --git a/config/layouts/page.yml b/config/layouts/page.yml index 99f531867c..6396a0d8ee 100644 --- a/config/layouts/page.yml +++ b/config/layouts/page.yml @@ -1,5 +1,4 @@ definitions: - - &background_image >- {%- if page.meta.cover -%} theme/assets/img/cover/{{ page.meta.cover }} @@ -70,7 +69,6 @@ definitions: # Meta tags tags: - # Open Graph og:type: website og:title: *page_title_with_site_name @@ -94,7 +92,6 @@ tags: # Card size and layers size: { width: 1200, height: 630 } layers: - # Background - background: image: *background_image diff --git a/config/layouts/pride.yml b/config/layouts/pride.yml index d245510e4d..abe8e3b73a 100644 --- a/config/layouts/pride.yml +++ b/config/layouts/pride.yml @@ -1,5 +1,4 @@ definitions: - - &background_image >- {%- if page.meta.cover -%} theme/assets/img/cover/{{ page.meta.cover }} @@ -55,7 +54,6 @@ definitions: # Meta tags tags: - # Open Graph og:type: website og:title: *page_title_with_site_name @@ -79,7 +77,6 @@ tags: # Card size and layers size: { width: 1200, height: 630 } layers: - # Background - background: image: *background_image diff --git a/config/mkdocs-common.yml b/config/mkdocs-common.yml index 072345b43c..4b9cb5588c 100644 --- a/config/mkdocs-common.yml +++ b/config/mkdocs-common.yml @@ -18,20 +18,29 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. -docs_dir: '../docs' +docs_dir: "../docs" site_url: "https://www.privacyguides.org/" -site_dir: '../site' +site_dir: "../site" site_name: Privacy Guides -site_description: !ENV [SITE_DESCRIPTION, "Privacy Guides is your central privacy and security resource to protect yourself online."] -copyright: !ENV [FOOTER_COPYRIGHT, "© 2019 Privacy Guides and contributors."] +site_description: + !ENV [ + SITE_DESCRIPTION, + "Privacy Guides is your central privacy and security resource to protect yourself online.", + ] +copyright: + !ENV [FOOTER_COPYRIGHT, "© 2019 Privacy Guides and contributors."] edit_uri: edit/main/docs/ extra: generator: false context: !ENV [CONTEXT, "production"] deploy: !ENV DEPLOY_ID - homepage_description: !ENV [DESCRIPTION_HOMEPAGE, "A socially motivated website which provides information about protecting your online data privacy and security."] + homepage_description: + !ENV [ + DESCRIPTION_HOMEPAGE, + "A socially motivated website which provides information about protecting your online data privacy and security.", + ] translation_notice: !ENV DESCRIPTION_TRANSLATION translation_notice_cta: !ENV [DESCRIPTION_TRANSLATION_CTA, "Visit Crowdin"] translation_notice_language: !ENV LANG_ENGLISH @@ -204,85 +213,86 @@ markdown_extensions: toc_depth: 4 nav: - - !ENV [NAV_HOME, 'Home']: 'index.md' - - !ENV [NAV_KNOWLEDGE_BASE, 'Knowledge Base']: - - 'basics/why-privacy-matters.md' - - 'basics/threat-modeling.md' - - 'basics/common-threats.md' - - 'basics/common-misconceptions.md' - - 'basics/account-creation.md' - - 'basics/account-deletion.md' - - !ENV [NAV_TECHNOLOGY_ESSENTIALS, 'Technology Essentials']: - - 'basics/passwords-overview.md' - - 'basics/multi-factor-authentication.md' - - 'basics/email-security.md' - - 'basics/vpn-overview.md' - - !ENV [NAV_ADVANCED_TOPICS, 'Advanced Topics']: - - 'advanced/dns-overview.md' - - 'advanced/tor-overview.md' - - 'advanced/payments.md' - - 'advanced/communication-network-types.md' - - !ENV [NAV_OPERATING_SYSTEMS, 'Operating Systems']: - - 'os/android-overview.md' - - 'os/ios-overview.md' - - 'os/linux-overview.md' - - 'os/macos-overview.md' - - 'os/qubes-overview.md' - - kb-archive.md - - !ENV [NAV_RECOMMENDATIONS, 'Recommendations']: - - 'tools.md' - - !ENV [NAV_INTERNET_BROWSING, 'Internet Browsing']: - - 'tor.md' - - 'desktop-browsers.md' - - 'mobile-browsers.md' - - !ENV [NAV_PROVIDERS, 'Providers']: - - 'cloud.md' - - 'dns.md' - - 'email-aliasing.md' - - 'email.md' - - 'financial-services.md' - - 'photo-management.md' - - 'search-engines.md' - - 'vpn.md' - - !ENV [NAV_SOFTWARE, 'Software']: - - 'calendar.md' - - 'cryptocurrency.md' - - 'data-redaction.md' - - 'email-clients.md' - - 'encryption.md' - - 'file-sharing.md' - - 'frontends.md' - - 'multi-factor-authentication.md' - - 'news-aggregators.md' - - 'notebooks.md' - - 'passwords.md' - - 'productivity.md' - - 'real-time-communication.md' - - !ENV [NAV_OPERATING_SYSTEMS, 'Operating Systems']: - - 'android.md' - - 'desktop.md' - - 'router.md' - - !ENV [NAV_ADVANCED, 'Advanced']: - - 'device-integrity.md' - - !ENV [NAV_ABOUT, 'About']: - - 'about/index.md' - - 'about/criteria.md' - - 'about/notices.md' - - 'about/privacy-policy.md' - - !ENV [NAV_COMMUNITY, 'Community']: - - 'about/donate.md' - - !ENV [NAV_ONLINE_SERVICES, 'Online Services']: 'about/services.md' - - !ENV [NAV_CODE_OF_CONDUCT, 'Code of Conduct']: 'CODE_OF_CONDUCT.md' - - 'about/privacytools.md' - - !ENV [NAV_CONTRIBUTING, 'Contributing']: - - !ENV [NAV_WRITING_GUIDE, 'Writing Guide']: - - 'meta/writing-style.md' - - 'meta/admonitions.md' - - 'meta/brand.md' - - 'meta/translations.md' - - !ENV [NAV_TECHNICAL_GUIDES, 'Technical Guides']: - - 'meta/uploading-images.md' - - 'meta/git-recommendations.md' - - !ENV [NAV_CHANGELOG, 'Changelog']: 'https://github.com/privacyguides/privacyguides.org/releases' - - !ENV [NAV_FORUM, 'Forum']: 'https://discuss.privacyguides.net/' - - !ENV [NAV_BLOG, 'Blog']: 'https://blog.privacyguides.org/' + - !ENV [NAV_HOME, "Home"]: "index.md" + - !ENV [NAV_KNOWLEDGE_BASE, "Knowledge Base"]: + - "basics/why-privacy-matters.md" + - "basics/threat-modeling.md" + - "basics/common-threats.md" + - "basics/common-misconceptions.md" + - "basics/account-creation.md" + - "basics/account-deletion.md" + - !ENV [NAV_TECHNOLOGY_ESSENTIALS, "Technology Essentials"]: + - "basics/passwords-overview.md" + - "basics/multi-factor-authentication.md" + - "basics/email-security.md" + - "basics/vpn-overview.md" + - !ENV [NAV_ADVANCED_TOPICS, "Advanced Topics"]: + - "advanced/dns-overview.md" + - "advanced/tor-overview.md" + - "advanced/payments.md" + - "advanced/communication-network-types.md" + - !ENV [NAV_OPERATING_SYSTEMS, "Operating Systems"]: + - "os/android-overview.md" + - "os/ios-overview.md" + - "os/linux-overview.md" + - "os/macos-overview.md" + - "os/qubes-overview.md" + - kb-archive.md + - !ENV [NAV_RECOMMENDATIONS, "Recommendations"]: + - "tools.md" + - !ENV [NAV_INTERNET_BROWSING, "Internet Browsing"]: + - "tor.md" + - "desktop-browsers.md" + - "mobile-browsers.md" + - !ENV [NAV_PROVIDERS, "Providers"]: + - "cloud.md" + - "dns.md" + - "email-aliasing.md" + - "email.md" + - "financial-services.md" + - "photo-management.md" + - "search-engines.md" + - "vpn.md" + - !ENV [NAV_SOFTWARE, "Software"]: + - "calendar.md" + - "cryptocurrency.md" + - "data-redaction.md" + - "email-clients.md" + - "encryption.md" + - "file-sharing.md" + - "frontends.md" + - "multi-factor-authentication.md" + - "news-aggregators.md" + - "notebooks.md" + - "passwords.md" + - "productivity.md" + - "real-time-communication.md" + - !ENV [NAV_OPERATING_SYSTEMS, "Operating Systems"]: + - "android.md" + - "desktop.md" + - "router.md" + - !ENV [NAV_ADVANCED, "Advanced"]: + - "device-integrity.md" + - !ENV [NAV_ABOUT, "About"]: + - "about/index.md" + - "about/criteria.md" + - "about/notices.md" + - "about/privacy-policy.md" + - !ENV [NAV_COMMUNITY, "Community"]: + - "about/donate.md" + - !ENV [NAV_ONLINE_SERVICES, "Online Services"]: "about/services.md" + - !ENV [NAV_CODE_OF_CONDUCT, "Code of Conduct"]: "CODE_OF_CONDUCT.md" + - "about/privacytools.md" + - !ENV [NAV_CONTRIBUTING, "Contributing"]: + - !ENV [NAV_WRITING_GUIDE, "Writing Guide"]: + - "meta/writing-style.md" + - "meta/admonitions.md" + - "meta/brand.md" + - "meta/translations.md" + - !ENV [NAV_TECHNICAL_GUIDES, "Technical Guides"]: + - "meta/uploading-images.md" + - "meta/git-recommendations.md" + - !ENV [NAV_CHANGELOG, "Changelog"]: + "https://github.com/privacyguides/privacyguides.org/releases" + - !ENV [NAV_FORUM, "Forum"]: "https://discuss.privacyguides.net/" + - !ENV [NAV_BLOG, "Blog"]: "https://blog.privacyguides.org/" diff --git a/config/mkdocs-offline.yml b/config/mkdocs-offline.yml index 55173031a8..e970090fcb 100644 --- a/config/mkdocs-offline.yml +++ b/config/mkdocs-offline.yml @@ -44,5 +44,4 @@ plugins: enabled: true social: enabled: false - # Edit the offline-mode navbar in mkdocs-common.yml diff --git a/config/mkdocs.en.yml b/config/mkdocs.en.yml index cd7bf5d0fc..78767425b3 100644 --- a/config/mkdocs.en.yml +++ b/config/mkdocs.en.yml @@ -20,7 +20,7 @@ INHERIT: mkdocs-common.yml site_url: "https://www.privacyguides.org/en/" -site_dir: '../site/en' +site_dir: "../site/en" theme: # ENGLISH ONLY: this logo needs to be set separately because the relative path is different diff --git a/config/mkdocs.es.yml b/config/mkdocs.es.yml index f47c0bbd55..0aa4b39e06 100644 --- a/config/mkdocs.es.yml +++ b/config/mkdocs.es.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/es' +docs_dir: "../i18n/es" site_url: "https://www.privacyguides.org/es/" -site_dir: '../site/es' +site_dir: "../site/es" edit_uri: edit/main/i18n/es/ diff --git a/config/mkdocs.fr.yml b/config/mkdocs.fr.yml index 8ff8540198..5a24730134 100644 --- a/config/mkdocs.fr.yml +++ b/config/mkdocs.fr.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/fr' +docs_dir: "../i18n/fr" site_url: "https://www.privacyguides.org/fr/" -site_dir: '../site/fr' +site_dir: "../site/fr" edit_uri: edit/main/i18n/fr/ diff --git a/config/mkdocs.he.yml b/config/mkdocs.he.yml index 33fc694974..cd3495f9ce 100644 --- a/config/mkdocs.he.yml +++ b/config/mkdocs.he.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/he' +docs_dir: "../i18n/he" site_url: "https://www.privacyguides.org/he/" -site_dir: '../site/he' +site_dir: "../site/he" edit_uri: edit/main/i18n/he/ diff --git a/config/mkdocs.it.yml b/config/mkdocs.it.yml index 5694891a45..b4bee1f63b 100644 --- a/config/mkdocs.it.yml +++ b/config/mkdocs.it.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/it' +docs_dir: "../i18n/it" site_url: "https://www.privacyguides.org/it/" -site_dir: '../site/it' +site_dir: "../site/it" edit_uri: edit/main/i18n/it/ diff --git a/config/mkdocs.nl.yml b/config/mkdocs.nl.yml index 642694b9b7..98d06fb102 100644 --- a/config/mkdocs.nl.yml +++ b/config/mkdocs.nl.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/nl' +docs_dir: "../i18n/nl" site_url: "https://www.privacyguides.org/nl/" -site_dir: '../site/nl' +site_dir: "../site/nl" edit_uri: edit/main/i18n/nl/ diff --git a/config/mkdocs.ru.yml b/config/mkdocs.ru.yml index f007a5937a..e1f4e9de27 100644 --- a/config/mkdocs.ru.yml +++ b/config/mkdocs.ru.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/ru' +docs_dir: "../i18n/ru" site_url: "https://www.privacyguides.org/ru/" -site_dir: '../site/ru' +site_dir: "../site/ru" edit_uri: edit/main/docs/ diff --git a/config/mkdocs.zh-Hant.yml b/config/mkdocs.zh-Hant.yml index 7c2616b5a8..b17635e83c 100644 --- a/config/mkdocs.zh-Hant.yml +++ b/config/mkdocs.zh-Hant.yml @@ -19,9 +19,9 @@ # IN THE SOFTWARE. INHERIT: mkdocs-common.yml -docs_dir: '../i18n/zh-Hant' +docs_dir: "../i18n/zh-Hant" site_url: "https://www.privacyguides.org/zh-Hant/" -site_dir: '../site/zh-Hant' +site_dir: "../site/zh-Hant" edit_uri: edit/main/i18n/zh-Hant/