Skip to content

Commit bfa7453

Browse files
committed
Squashed 'docs/' changes from 60dd993a6..71f739460
71f739460 content: Reformat procedures to use description lists instead of H3 elements 420a78802 content: Remove 21YunBox hosting guide abeea342f content: Add hosting guide for Vercel 3aaca6c0a content: Add hosting guide for Render d77b06aa6 content: Fix formatting 82885415f content: Change build.sh file perms in Cloudflare hosting docs 0569c68ca content: Fix typo 8f14be5da content: Remove duplicate list items e76f17815 misc: Fix typo in configuration for the Markdown linter 32e450b7c misc: Fix typo in configuration for the Markdown linter 81bd0056a mics: Update configuration for the Markdown linter 480ae9014 content: Improve file names in the PageInner description b17999021 content: Adjust Markdown to pass linter tests 1d9d56897 misc: Implement Markdown linter 91fc34c58 content: Miscellaneous edits b7c60ae0b content: Add admonition for outdated learning resources 51b6df588 misc: Activate stale action 84a897f5f misc: Implement stale action 167ea9713 content: Update GitHub Pages workflow example 3672d9116 misc: Use actions/checkout@v5 in workflows 2f2b4c968 misc: Update spellcheck configs 55a8ff7ae content: Fix typo 36e3d7b7b Adjust sponsors 51014e6b9 content: Fix link 37cfc093f content: Add Cloudflare Worker hosting instructions 09862ffad content: Update hosting considerations related to GitInfo 477f3e7c0 misc: Update cspell config 7a7bb4874 content: Miscellaneous edits 48486d5ac content: Remove Cloudflare Pages documentation 382f8052d content: Remove KeyCDN documentation 8ecbc985c content: Update hosting workflow files 57fd362bf content: Clarify applicability of the slug front matter field 0dcfff9 content: Update directory-structure.md 58e3609a0 content: Fix typo 22fb43695 content: Fix search/replace errors fba8342a8 content: Fix missing link refs 97e035006 Update netlify.toml 6ab5ae6df content: Improve GitLab Pages compression performance 172bfbc4b content: Differentiate content view templates from other templates 978770fc8 content: Clarify handling of goldmark extensions conflict cb74aa4c7 content: Improve Codeberg Pages hosting instructions 794477792 content: Add custom domain instructions to Codeberg Pages setup 235fac27d content: Improve description of code block render hook options map 35a507d31 content: Improve WP2Hugo description 8191f4dcf content: Improve WP2Hugo description 25cca30fd content: Fix type e955652ae content: Improve base template description 922aa91bd content: Improve description of partial lookup logic 072536ef6 content: Update template type documentation 5bf153531 Update netlify.toml cdd20a433 content: Indicate language sort order for relevant page methods fc9a868c9 content: Add Sitepins to list of commercial CMS platforms b6077449c content: Update version references b71388cac content: Fix typo c27dfdef3 content: Move link reference d008ea6ac content: Fix typo 040f14a3c content: Fix typo 1ac119d26 content: Fix typo a5a4fa907 content: More updates for v0.148.0 b7247a8ea content: Remove command chaining from GitHub Actions workflow 6ecb96bcd content: Updates for v0.148.0 aea9e4c29 netlify: Update Hugo version 4e71546d1 Add Ancestors (plural) method to GitInfo, rename Ancestor field to Parent 68620a6c2 source: Expose Ancestor in GitInfo git-subtree-dir: docs git-subtree-split: 71f739460f43e3e1226d3b778ccd1c20c4ca9af3
1 parent bb147f9 commit bfa7453

File tree

196 files changed

+2305
-1997
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+2305
-1997
lines changed

‎.codespellrc‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
[codespell]
55

66
# Comma separated list of dirs to be skipped.
7-
skip = _vendor,.cspell.json,chroma.css,chroma_dark.css
7+
skip = *.ai,chroma.css,chroma_dark.css,.cspell.json
88

99
# Comma separated list of words to be ignored. Words must be lowercased.
10-
ignore-words-list = abl,edn,te,ue,trys,januar,womens,crossreferences
10+
ignore-words-list = abl,edn,januar,te,trys,ue,womens
1111

1212
# Check file names as well.
1313
check-filenames = true

‎.cspell.json‎

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
{
22
"version": "0.2",
33
"allowCompoundWords": true,
4-
"files": [
5-
"**/*.md"
4+
"overrides": [
5+
{
6+
"filename": "**/*",
7+
"enabled": false
8+
},
9+
{
10+
"filename": "**/*.md",
11+
"enabled": true
12+
}
613
],
714
"flagWords": [
815
"alot",
@@ -64,6 +71,7 @@
6471
"templating",
6572
"transpile",
6673
"unmarshal",
74+
"unmarshaled",
6775
"unmarshaling",
6876
"unmarshals",
6977
"# ----------------------------------------------------------------------",
@@ -100,6 +108,8 @@
100108
"descripción",
101109
"dokumentation",
102110
"erklärungen",
111+
"español",
112+
"français",
103113
"libros",
104114
"mercredi",
105115
"miesiąc",
@@ -147,6 +157,7 @@
147157
"dpkg",
148158
"doas",
149159
"eopkg",
160+
"forgejo",
150161
"gitee",
151162
"goldmark",
152163
"katex",

‎.github/stale.yml‎

Lines changed: 0 additions & 22 deletions
This file was deleted.

‎.github/workflows/codeql-analysis.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Initialize CodeQL
2121
uses: github/codeql-action/init@v3

‎.github/workflows/markdownlint.yml‎

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint markdown
2+
on:
3+
workflow_dispatch:
4+
pull_request:
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v5
11+
- name: Run Markdown linter
12+
uses: DavidAnson/markdownlint-cli2-action@v20
13+
with:
14+
globs: # set to null to override default of *.{md,markdown}
15+
continue-on-error: false

‎.github/workflows/spellcheck.yml‎

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,14 @@ jobs:
1212
spellcheck:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
16-
- uses: streetsidesoftware/cspell-action@v5
15+
- uses: actions/checkout@v5
16+
- uses: streetsidesoftware/cspell-action@v7
1717
with:
18-
check_dot_files: false
19-
files: content/**/*.md
2018
incremental_files_only: true
21-
inline: warning
22-
strict: false
19+
strict: true
20+
# cspell uses the .cspell.json configuration file
2321
- uses: codespell-project/actions-codespell@v2
2422
with:
2523
check_filenames: true
2624
check_hidden: true
27-
# by default, codespell uses configuration from the .codespellrc
25+
# codespell uses the .codespellrc file

‎.github/workflows/stale.yml‎

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Close stale issues and pull requests
2+
on:
3+
workflow_dispatch:
4+
schedule:
5+
- cron: "30 1 * * *"
6+
permissions:
7+
contents: read
8+
jobs:
9+
stale:
10+
permissions:
11+
contents: read
12+
issues: write
13+
pull-requests: write
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@v9
17+
with:
18+
days-before-stale: 90 # default is 60
19+
days-before-close: 14 # default is 7
20+
exempt-all-assignees: true
21+
exempt-draft-pr: true
22+
exempt-issue-labels: Keep, InProgress, NeedsTriage
23+
exempt-pr-labels: Keep
24+
operations-per-run: 100
25+
stale-issue-message: >
26+
This issue has been marked as stale because there hasn't been any
27+
recent activity. It will be closed soon if there are no further
28+
updates.
29+
stale-pr-message: >
30+
This pull request has been marked as stale because there hasn't
31+
been any recent activity. It will be closed soon if there are no
32+
further updates.

‎.github/workflows/super-linter.yml‎

Lines changed: 0 additions & 41 deletions
This file was deleted.

‎.markdownlint-cli2.yaml‎

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# Glob patterns to include
2+
globs:
3+
- "content/**/*.md"
4+
5+
# Glob patterns to exclude
6+
ignores:
7+
- "content/**/commands/**"
8+
- "content/en/about/license.md"
9+
- "content/LICENSE.md"
10+
11+
# Markdownlint rules and configuration
12+
# https://github.com/DavidAnson/markdownlint?tab=readme-ov-file#rules--aliases
13+
config:
14+
MD001: true
15+
# MD002 deprecated
16+
MD003:
17+
style: atx
18+
MD004:
19+
style: dash
20+
MD005: true
21+
# MD006 deprecated
22+
MD007: false # if enabled, throws errors when definition descriptions contain list items
23+
# MD008 deprecated
24+
MD009: true
25+
MD010: true
26+
MD011: true
27+
MD012: true
28+
MD013: false
29+
MD014: true
30+
# MD015 deprecated
31+
# MD016 deprecated
32+
# MD017 deprecated
33+
MD018: true
34+
MD019: true
35+
MD020: true
36+
MD021: true
37+
MD022: true
38+
MD023: true
39+
MD024: true
40+
MD025: true
41+
MD026: true
42+
MD027: true
43+
MD028: false
44+
MD029:
45+
style: one
46+
MD030: true
47+
MD031: true
48+
MD032: true
49+
MD033: true
50+
MD034: false
51+
MD035:
52+
style: ---
53+
MD036: true
54+
MD037: true
55+
MD038: true
56+
MD039: true
57+
MD040: true
58+
MD041: false
59+
MD042: true
60+
MD043: false
61+
MD044: false
62+
MD045: true
63+
MD046: false
64+
MD047: true
65+
MD048:
66+
style: backtick
67+
MD049:
68+
style: underscore
69+
MD050:
70+
style: asterisk
71+
MD051: false
72+
MD052: true
73+
MD053: true
74+
MD054:
75+
autolink: true
76+
collapsed: true
77+
full: true
78+
inline: true
79+
shortcut: true
80+
url_inline: true
81+
MD055:
82+
style: consistent
83+
MD056: true
84+
# MD057 deprecated
85+
MD058: true
86+
MD059:
87+
prohibited_texts:
88+
- click here
89+
- here
90+
- link
91+
- more

‎.markdownlint.yaml‎

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)