Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add llms.txt support #486

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clevercloud-deploy-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ wget https://github.com/gohugoio/hugo/releases/download/v$HUGO_VERSION/hugo_exte
tar xvf hugo_extended_"$HUGO_VERSION"_Linux-64bit.tar.gz
chmod +x ./hugo
./hugo mod get github.com/imfing/hextra@$HEXTRA_VERSION
./hugo --gc --minify --destination public/developers
./hugo --gc --minify --destination public/developers
echo "AddType text/markdown;charset=UTF-8 .md" > public/.htaccess
1 change: 1 addition & 0 deletions content/guides/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ aliases:
- /doc/deploy/application/docker/tutorials
type: "docs"
comments: false
llmsTxtOptional: true
---
## Frameworks

Expand Down
2 changes: 2 additions & 0 deletions data/software_versions_shared_dedicated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ elasticsearch:
redis:
dedicated:
- "v7.2.4"

dev_message: "**Important**: Dev plans are free and **solely for testing purposes**. They don't provide the same guarantees or SLAs as dedicated plans."
16 changes: 13 additions & 3 deletions hugo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,18 @@ module:
max: "0.135.0"

outputs:
home: [HTML]
page: [HTML]
section: [HTML, RSS]
home: [HTML, LLMS]
page: [HTML, Markdown]
section: [HTML, Markdown, RSS]

outputFormats:
LLMS:
mediaType: "text/plain"
baseName: "llms"
isPlainText: true

Markdown:
baseName: index.html

privacy:
youtube:
Expand All @@ -37,6 +46,7 @@ languages:
#title: "Documentation de Clever Cloud "

params:
description: Clever Cloud is a Platform-as-a-Service (PaaS) cloud provider, an automated hosting platform for developers. Deploy your app easily and launch dependencies without having to worry about the infrastructure set up
images:
- /images/feature.png
navbar:
Expand Down
1 change: 1 addition & 0 deletions layouts/_default/list.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ partial "markdown/include_entrypoint.md" .RawContent | htmlUnescape }}

Check failure on line 1 in layouts/_default/list.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/_default/list.md#L1

[Vale.Spelling] Did you really mean 'htmlUnescape'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'htmlUnescape'?", "location": {"path": "layouts/_default/list.md", "range": {"start": {"line": 1, "column": 59}}}, "severity": "ERROR"}
1 change: 1 addition & 0 deletions layouts/_default/single.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ partial "markdown/include_entrypoint.md" .RawContent | htmlUnescape }}

Check failure on line 1 in layouts/_default/single.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/_default/single.md#L1

[Vale.Spelling] Did you really mean 'htmlUnescape'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'htmlUnescape'?", "location": {"path": "layouts/_default/single.md", "range": {"start": {"line": 1, "column": 59}}}, "severity": "ERROR"}
52 changes: 52 additions & 0 deletions layouts/hextra-home.llms.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{{- if eq .Kind "home" -}}
# {{ .Site.Title }}

> {{ .Site.Params.description }}

{{- $mainSections := where .Site.Sections "Type" "docs" -}}
{{- $sortedSections := sort $mainSections "Title" }}
{{- range $sortedSections }}
{{- if and (not .Params.llmsTxtOptional) (gt (len .Pages) 0) }}
{{- $allSections := slice . -}}
{{- range .Sections -}}
{{- if not .Params.llmsTxtOptional -}}
{{- $allSections = $allSections | append . -}}
{{- end -}}
{{- end -}}
{{- $sortedAllSections := sort $allSections "Title" -}}
{{- range $sortedAllSections }}

{{- if and (gt (len .Pages) 0) (not (strings.Contains .Title "Postmortem" )) }}

## {{ .Title }}
{{- $pages := sort .Pages "Title" "asc" }}
{{- range $pages }}
{{- if not (strings.Contains .RelPermalink "/api/v2") }}
- [{{ .Title }}](https://www.clever-cloud.com{{ .RelPermalink }}index.html.md){{ with .Description }}: {{ . }}{{ end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}

## Optional
{{- range $mainSections }}
{{- if .Params.llmsTxtOptional }}
{{- $pages := sort .Pages "Title" "asc" }}
{{- range $pages }}
- [{{ .Title }}](https://www.clever-cloud.com{{ .RelPermalink }}index.html.md){{ with .Description }}: {{ . }}{{ end }}
{{- end }}
{{- end }}
{{- range .Sections }}
{{- if .Params.llmsTxtOptional }}
{{- $pages := sort .Pages "Title" "asc" }}
{{- range $pages }}
- [{{ .Title }}]({{ .RelPermalink }}index.html.md){{ with .Description }}: {{ . }}{{ end }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
{{- else -}}
{{- .RawContent | .Page.RenderString -}}
{{- end -}}
5 changes: 5 additions & 0 deletions layouts/partials/markdown/include_entrypoint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{{- $content := . -}}
{{- $content = partial "markdown/include_shortcode_content.md" $content -}}
{{- $content = partial "markdown/include_runtimes_versions.md" $content -}}
{{- $content = partial "markdown/include_software_versions_shared_dedicated.md" $content -}}
{{ $content }}
32 changes: 32 additions & 0 deletions layouts/partials/markdown/include_runtimes_versions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{{- $content := . -}}
{{- $runtimesPattern := "\\{\\{<\\s*runtimes_versions\\s+([^>]+)\\s*>\\}\\}" -}}

{{- range $runtimeFound := findRE $runtimesPattern $content -}}

Check failure on line 4 in layouts/partials/markdown/include_runtimes_versions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_runtimes_versions.md#L4

[Vale.Spelling] Did you really mean 'runtimeFound'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'runtimeFound'?", "location": {"path": "layouts/partials/markdown/include_runtimes_versions.md", "range": {"start": {"line": 4, "column": 12}}}, "severity": "ERROR"}
{{- $runtime := replaceRE $runtimesPattern "$1" $runtimeFound -}}
{{- $runtime = trim $runtime " " -}}
{{- $versions := index site.Data.runtime_versions $runtime -}}

Check failure on line 7 in layouts/partials/markdown/include_runtimes_versions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_runtimes_versions.md#L7

[Google.Spacing] 'e.D' should have one space.
Raw output
{"message": "[Google.Spacing] 'e.D' should have one space.", "location": {"path": "layouts/partials/markdown/include_runtimes_versions.md", "range": {"start": {"line": 7, "column": 31}}}, "severity": "ERROR"}
{{- $output := "" -}}
{{- with $versions -}}
{{- if .default -}}
{{- $output = printf "%s### Default version\n" $output -}}

Check failure on line 11 in layouts/partials/markdown/include_runtimes_versions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_runtimes_versions.md#L11

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_runtimes_versions.md", "range": {"start": {"line": 11, "column": 27}}}, "severity": "ERROR"}
{{- range .default -}}
{{- $output = printf "%s- %s\n" $output . -}}

Check failure on line 13 in layouts/partials/markdown/include_runtimes_versions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_runtimes_versions.md#L13

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_runtimes_versions.md", "range": {"start": {"line": 13, "column": 31}}}, "severity": "ERROR"}
{{- end -}}
{{- end -}}

{{- if .accepted -}}
{{- $output = printf "%s\n### Accepted version(s)\n" $output -}}
{{- range .accepted -}}
{{- $output = printf "%s- %s\n" $output . -}}
{{- end -}}
{{- end -}}

{{- if .eol_source -}}
{{- $output = printf "%s\nCheck the [end-of-life (EOL)](%s) status of these versions." $output .eol_source -}}
{{- end -}}
{{- end -}}

{{- $content = replace $content $runtimeFound $output -}}

Check failure on line 29 in layouts/partials/markdown/include_runtimes_versions.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_runtimes_versions.md#L29

[Vale.Spelling] Did you really mean 'runtimeFound'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'runtimeFound'?", "location": {"path": "layouts/partials/markdown/include_runtimes_versions.md", "range": {"start": {"line": 29, "column": 38}}}, "severity": "ERROR"}
{{- end -}}

{{- return $content -}}
13 changes: 13 additions & 0 deletions layouts/partials/markdown/include_shortcode_content.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{- $content := . -}}
{{- $patternSearch := "\\{\\{%\\s*content/([^%}]+)\\s*%\\}\\}" -}}

Check failure on line 2 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L2

[Vale.Spelling] Did you really mean 'patternSearch'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'patternSearch'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 2, "column": 6}}}, "severity": "ERROR"}
{{- $patternClean := "\\{\\{%\\s*content/(.+?)\\s*%\\}\\}" -}}

Check failure on line 3 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L3

[Vale.Spelling] Did you really mean 'patternClean'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'patternClean'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 3, "column": 6}}}, "severity": "ERROR"}

{{- range $shortcodeFound := findRE $patternSearch $content -}}

Check failure on line 5 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L5

[Vale.Spelling] Did you really mean 'patternSearch'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'patternSearch'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 5, "column": 38}}}, "severity": "ERROR"}
{{- $name := replaceRE $patternClean "$1" $shortcodeFound -}}

Check failure on line 6 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L6

[Vale.Spelling] Did you really mean 'patternClean'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'patternClean'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 6, "column": 29}}}, "severity": "ERROR"}
{{- $filepath := printf "layouts/shortcodes/content/%s.md" $name -}}

Check warning on line 7 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L7

[Google.WordList] Use 'path' instead of 'filepath'.
Raw output
{"message": "[Google.WordList] Use 'path' instead of 'filepath'.", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 7, "column": 10}}}, "severity": "WARNING"}

Check failure on line 7 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L7

[Vale.Spelling] Did you really mean 'filepath'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'filepath'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 7, "column": 10}}}, "severity": "ERROR"}

Check failure on line 7 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L7

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 7, "column": 22}}}, "severity": "ERROR"}
{{- with os.ReadFile $filepath -}}

Check failure on line 8 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L8

[Google.Spacing] 's.R' should have one space.
Raw output
{"message": "[Google.Spacing] 's.R' should have one space.", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 8, "column": 15}}}, "severity": "ERROR"}

Check warning on line 8 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L8

[Google.WordList] Use 'path' instead of 'filepath'.
Raw output
{"message": "[Google.WordList] Use 'path' instead of 'filepath'.", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 8, "column": 27}}}, "severity": "WARNING"}

Check failure on line 8 in layouts/partials/markdown/include_shortcode_content.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_shortcode_content.md#L8

[Vale.Spelling] Did you really mean 'filepath'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'filepath'?", "location": {"path": "layouts/partials/markdown/include_shortcode_content.md", "range": {"start": {"line": 8, "column": 27}}}, "severity": "ERROR"}
{{- $content = replace $content $shortcodeFound . -}}
{{- end -}}
{{- end -}}

{{- return $content -}}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{{- $content := . -}}
{{- $versionsPattern := "\\{\\{<\\s*software_versions_shared_dedicated\\s+([^>]+)\\s*>\\}\\}" -}}

Check failure on line 2 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L2

[Vale.Spelling] Did you really mean 'versionsPattern'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'versionsPattern'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 2, "column": 6}}}, "severity": "ERROR"}

{{- range $versionFound := findRE $versionsPattern $content -}}

Check failure on line 4 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L4

[Vale.Spelling] Did you really mean 'versionFound'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'versionFound'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 4, "column": 12}}}, "severity": "ERROR"}

Check failure on line 4 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L4

[Vale.Spelling] Did you really mean 'versionsPattern'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'versionsPattern'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 4, "column": 36}}}, "severity": "ERROR"}
{{- $dbname := replaceRE $versionsPattern "$1" $versionFound -}}

Check failure on line 5 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L5

[Vale.Spelling] Did you really mean 'dbname'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'dbname'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 5, "column": 10}}}, "severity": "ERROR"}

Check failure on line 5 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L5

[Vale.Spelling] Did you really mean 'versionsPattern'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'versionsPattern'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 5, "column": 31}}}, "severity": "ERROR"}
{{- $versions := index site.Data.software_versions_shared_dedicated $dbname -}}

Check failure on line 6 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L6

[Google.Spacing] 'e.D' should have one space.
Raw output
{"message": "[Google.Spacing] 'e.D' should have one space.", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 6, "column": 31}}}, "severity": "ERROR"}

Check failure on line 6 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L6

[Vale.Spelling] Did you really mean 'dbname'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'dbname'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 6, "column": 74}}}, "severity": "ERROR"}
{{- $output := "### Regular versions\n" -}}
{{- with $versions.dedicated -}}
{{- range . -}}
{{- $output = printf "%s- %s\n" $output . -}}

Check failure on line 10 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L10

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 10, "column": 27}}}, "severity": "ERROR"}
{{- end -}}
{{- end -}}
{{- if $versions.dev -}}
{{- $output = printf "%s\n### DEV plan\n" $output -}}

Check failure on line 14 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L14

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 14, "column": 23}}}, "severity": "ERROR"}

Check notice on line 14 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L14

[Google.Acronyms] Spell out 'DEV', if it's unfamiliar to the audience.
Raw output
{"message": "[Google.Acronyms] Spell out 'DEV', if it's unfamiliar to the audience.", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 14, "column": 39}}}, "severity": "INFO"}
{{- range $versions.dev -}}
{{- $output = printf "%s- %s\n" $output . -}}

Check failure on line 16 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L16

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 16, "column": 27}}}, "severity": "ERROR"}
{{- end -}}
{{- $output = printf "%s\n%s" $output site.Data.software_versions_shared_dedicated.dev_message -}}

Check failure on line 18 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L18

[Vale.Spelling] Did you really mean 'printf'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'printf'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 18, "column": 23}}}, "severity": "ERROR"}

Check failure on line 18 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L18

[Google.Spacing] 'e.D' should have one space.
Raw output
{"message": "[Google.Spacing] 'e.D' should have one space.", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 18, "column": 50}}}, "severity": "ERROR"}
{{- end -}}
{{- $content = replace $content $versionFound $output -}}

Check failure on line 20 in layouts/partials/markdown/include_software_versions_shared_dedicated.md

View workflow job for this annotation

GitHub Actions / vale

[vale] layouts/partials/markdown/include_software_versions_shared_dedicated.md#L20

[Vale.Spelling] Did you really mean 'versionFound'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'versionFound'?", "location": {"path": "layouts/partials/markdown/include_software_versions_shared_dedicated.md", "range": {"start": {"line": 20, "column": 38}}}, "severity": "ERROR"}
{{- end -}}

{{- return $content -}}
Loading