Skip to content

Commit 784951b

Browse files
committed
docs(*): s^content/spin/^content/^g
Signed-off-by: Vaughn Dice <[email protected]>
1 parent 97e338c commit 784951b

File tree

147 files changed

+165
-165
lines changed

Some content is hidden

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

147 files changed

+165
-165
lines changed

content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2023-11-04T00:00:01Z"
44
enable_shortcodes = true
55
[extra]
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v3/index.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v3/index.md"
77

88
---
99

content/v1/ai-sentiment-analysis-api-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-09-05T09:00:00Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/ai-sentiment-analysis-api-tutorial"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/ai-sentiment-analysis-api-tutorial.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/ai-sentiment-analysis-api-tutorial.md"
88

99
---
1010
- [Tutorial Prerequisites](#tutorial-prerequisites)

content/v1/api-guides-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2023-03-03T03:03:03Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/api-guides-overview"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/api-guides-overview.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/api-guides-overview.md"
77

88
---
99

content/v1/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/build"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/build.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/build.md"
88

99
---
1010

content/v1/cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/cache"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/cache.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/cache.md"
88

99
---
1010

content/v1/cli-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-01-01T00:00:01Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/cli-reference"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/cli-reference.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/cli-reference.md"
88

99
---
1010
- [spin add](#spin-add)

content/v1/contributing-docs.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-01-01T00:00:01Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/contributing-docs"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/contributing-docs.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/contributing-docs.md"
77
keywords = "contribute contributing"
88

99
---
@@ -248,9 +248,9 @@ $ npm run test
248248

249249
```bash
250250
# Example of how to lint all Markdown files in a local folder (in this case the spin folder)
251-
npx markdownlint-cli2 content/spin/*.md \"#node_modules\"
251+
npx markdownlint-cli2 content/*.md \"#node_modules\"
252252
# Example of how to lint a local Markdown file
253-
npx markdownlint-cli2 content/spin/install.md \"#node_modules\"
253+
npx markdownlint-cli2 content/install.md \"#node_modules\"
254254
```
255255

256256
**Note:** Whilst the `npm run test` command (which lints and also programmatically checks all URLs) does take extra time to complete it **must** be utilized before you [push changes](#10-push-changes); preventing the potential pushing of broken URLs to the documentation site.
@@ -304,7 +304,7 @@ If you create a new markdown file and/or you notice a file without the explicit
304304

305305
```
306306
[extra]
307-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/contributing-docs.md"
307+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/contributing-docs.md"
308308
```
309309

310310
### 6.5 How To Properly Edit CSS Styles
@@ -393,16 +393,16 @@ The `bart check` command can be used to check the content. Simply pass in the co
393393
<!-- @selectiveCpy -->
394394

395395
```bash
396-
$ bart check --shortcodes ./shortcodes content/spin/variables.md
396+
$ bart check --shortcodes ./shortcodes content/variables.md
397397
shortcodes: registering alert
398398
shortcodes: registering details
399399
shortcodes: registering tabs
400400
shortcodes: registering startTab
401401
shortcodes: registering blockEnd
402-
✅ content/spin/variables.md
402+
✅ content/variables.md
403403
```
404404

405-
> Note: `using a wildcard `*` will check a whole directory via a single command. For example, running `bart check --shortcodes ./shortcodes content/spin/*` will check all markdown files in the Spin project's documentation section.
405+
> Note: `using a wildcard `*` will check a whole directory via a single command. For example, running `bart check --shortcodes ./shortcodes content/*` will check all markdown files in the Spin project's documentation section.
406406
407407
### 8. Add Changes
408408

content/v1/contributing-spin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v3/contributing-spin"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v3/contributing-spin.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v3/contributing-spin.md"
77

88
---
99
- [Making Code Contributions to Spin](#making-code-contributions-to-spin)

content/v1/distributing-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/distributing-apps"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/distributing-apps.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/distributing-apps.md"
88

99
---
1010
- [Logging Into a Registry](#logging-into-a-registry)

content/v1/dynamic-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/dynamic-configuration"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/dynamic-configuration.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/dynamic-configuration.md"
77

88
---
99
- [Application Variables Runtime Configuration](#application-variables-runtime-configuration)

content/v1/extending-and-embedding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/extending-and-embedding"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/extending-and-embedding.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/extending-and-embedding.md"
77

88
---
99
- [Other Ways to Extend and Use Spin](#other-ways-to-extend-and-use-spin)

content/v1/go-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/go-components"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/go-components.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/go-components.md"
77

88
---
99

content/v1/http-outbound.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/http-outbound"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/http-outbound.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/http-outbound.md"
88

99
---
1010
- [Using HTTP From Applications](#using-http-from-applications)

content/v1/http-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/http-trigger"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/http-trigger.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/http-trigger.md"
88

99
---
1010
- [Specifying an Application as HTTP](#specifying-an-application-as-http)

content/v1/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/index"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/index.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/index.md"
88

99

1010
---

content/v1/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/install"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/install.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/install.md"
88
keywords = "install"
99

1010
---

content/v1/javascript-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/javascript-components"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/javascript-components.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/javascript-components.md"
88

99
---
1010
- [Installing Templates](#installing-templates)

content/v1/key-value-store-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-02-21T00:00:00Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/key-value-store-tutorial"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/key-value-store-tutorial.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/key-value-store-tutorial.md"
88

99
---
1010
- [Key Value Store With Spin Applications](#key-value-store-with-spin-applications)

content/v1/kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-03-01T00:01:01Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/kubernetes"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/kubernetes.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/kubernetes.md"
88

99
---
1010
- [Why Use Spin With Kubernetes?](#why-use-spin-with-kubernetes)

content/v1/kv-store-api-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-04-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/kv-store-api-guide"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/kv-store-api-guide.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/kv-store-api-guide.md"
88

99
---
1010
- [Using Key Value Store From Applications](#using-key-value-store-from-applications)

content/v1/language-support-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-01-01T00:00:01Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/language-support-overview"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/language-support-overview.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/language-support-overview.md"
88

99
---
1010

content/v1/managing-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/managing-plugins"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/managing-plugins.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/managing-plugins.md"
88

99
---
1010
- [Installing Plugins](#installing-plugins)

content/v1/managing-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/managing-templates"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/managing-templates.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/managing-templates.md"
88

99
---
1010
- [Installing Templates](#installing-templates)

content/v1/manifest-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/manifest-reference"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/manifest-reference.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/manifest-reference.md"
77

88
---
99
- [Format](#format)

content/v1/other-languages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/other-languages"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/other-languages.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/other-languages.md"
77

88
---
99
- [AssemblyScript](#assemblyscript)

content/v1/plugin-authoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2023-02-1T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/plugin-authoring"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/plugin-authoring.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/plugin-authoring.md"
77

88
---
99
- [What Are Spin Plugins?](#what-are-spin-plugins)

content/v1/python-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2023-02-28T02:00:00Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/python-components"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/python-components.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/python-components.md"
77

88
---
99
- [Spin's Python Plugin](#spins-python-plugin)

content/v1/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/quickstart"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/quickstart.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/quickstart.md"
88
keywords = "quickstart"
99

1010
---

content/v1/rdbms-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/rdbms-storage"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/rdbms-storage.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/rdbms-storage.md"
88

99
---
1010
- [Using MySQL and PostgreSQL From Applications](#using-mysql-and-postgresql-from-applications)

content/v1/redis-outbound.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/redis-outbound"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/redis-outbound.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/redis-outbound.md"
88

99
---
1010
- [Using Redis From Applications](#using-redis-from-applications)

content/v1/redis-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/redis-trigger"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/redis-trigger.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/redis-trigger.md"
88

99
---
1010
- [Specifying an Application as Redis](#specifying-an-application-as-redis)

content/v1/registry-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-02-13T00:00:00Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/registry-tutorial"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/registry-tutorial.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/registry-tutorial.md"
88

99
---
1010
- [Spin Registry Support](#spin-registry-support)

content/v1/running-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2022-03-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/running-apps"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/running-apps.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/running-apps.md"
88

99
---
1010
- [Specifying the Application to Run](#specifying-the-application-to-run)

content/v1/rust-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2022-03-14T00:22:56Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/rust-components"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/rust-components.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/rust-components.md"
77

88
---
99
- [Prerequisites](#prerequisites)

content/v1/see-what-people-have-built-with-spin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ template = "main"
33
date = "2023-05-05T00:01:01Z"
44
[extra]
55
canonical_url = "https://spinframework.dev/v2/see-what-people-have-built-with-spin"
6-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/see-what-people-have-built-with-spin.md"
6+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/see-what-people-have-built-with-spin.md"
77

88
---
99
- [Like Button](#like-button)

content/v1/serverless-ai-api-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-09-05T09:00:00Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/serverless-ai-api-guide"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/serverless-ai-api-guide.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/serverless-ai-api-guide.md"
88

99
---
1010
- [Using Serverless AI From Applications](#using-serverless-ai-from-applications)

content/v1/serverless-ai-hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tags = ["ai", "serverless", "getting started"]
66
enable_shortcodes = true
77
[extra]
88
canonical_url = "https://spinframework.dev/v2/serverless-ai-hello-world"
9-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/serverless-ai-hello-world.md"
9+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/serverless-ai-hello-world.md"
1010

1111
---
1212

content/v1/spin-application-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-08-20T00:00:00Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/spin-application-structure"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/spin-application-structure.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/spin-application-structure.md"
88
keywords = "structure"
99

1010
---

content/v1/sqlite-api-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ date = "2023-04-14T00:22:56Z"
44
enable_shortcodes = true
55
[extra]
66
canonical_url = "https://spinframework.dev/v2/sqlite-api-guide"
7-
url = "https://github.com/spinframework/spin-docs/blob/main/content/spin/v1/sqlite-api-guide.md"
7+
url = "https://github.com/spinframework/spin-docs/blob/main/content/v1/sqlite-api-guide.md"
88

99
---
1010
- [Granting SQLite Database Permissions to Components](#granting-sqlite-database-permissions-to-components)

0 commit comments

Comments
 (0)