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)

0 commit comments

Comments
 (0)