Skip to content

Commit 6da8fbe

Browse files
authored
Merge pull request #2562 from rsyracuse/v0.16.5
[Hotfix] v0.16.5
2 parents 3296e2d + df92405 commit 6da8fbe

File tree

22 files changed

+665
-13
lines changed

22 files changed

+665
-13
lines changed

ci/vale/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ bootable
102102
bootloader
103103
bootup
104104
bootups
105+
boto
105106
bounceback
106107
brackley
107108
bram

ci/vale/styles/Linode/Terms.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ swap:
3535
uris: URIs
3636
Cuda: CUDA
3737
gpu: GPU
38+
markdown: Markdown

docs/applications/configuration-management/automate-a-static-site-deployment-with-salt/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Setting up these mechanisms offers an array of benefits:
3434

3535
## Development and Deployment Workflow
3636

37-
The static site generator used in this guide is [Hugo](https://gohugo.io), a fast framework written in Go. Static site generators compile [markdown](https://en.wikipedia.org/wiki/Markdown) or other content files into HTML files. This guide can easily be adapted to other frameworks.
37+
The static site generator used in this guide is [Hugo](https://gohugo.io), a fast framework written in Go. Static site generators compile [Markdown](https://en.wikipedia.org/wiki/Markdown) or other content files into HTML files. This guide can easily be adapted to other frameworks.
3838

3939
Two Git repositories will be created: one will track changes to the Hugo site, and the other will track Salt's configuration files. Remote repositories will be created for both on GitHub.
4040

@@ -482,7 +482,7 @@ The Salt minion's formula needs to be updated in order to serve the Hugo site. S
482482

483483
- Install Git and clone the Hugo site repository from GitHub.
484484

485-
- Install Hugo and build the HTML files from the markdown content.
485+
- Install Hugo and build the HTML files from the Markdown content.
486486

487487
- Update the NGINX configuration to serve the built site.
488488

@@ -993,7 +993,7 @@ Hook rules were not satisfied.⏎
993993

994994
hugo new post/test-post.md
995995

996-
1. This command creates a new partially filled in markdown document in `content/post/`. Open this file in your editor, remove the `draft: true` line from the [*frontmatter*](https://gohugo.io/content-management/front-matter/), and add some body text:
996+
1. This command creates a new partially filled in Markdown document in `content/post/`. Open this file in your editor, remove the `draft: true` line from the [*frontmatter*](https://gohugo.io/content-management/front-matter/), and add some body text:
997997

998998
{{< file "example-hugo-site/content/post/test-post.md" >}}
999999
---

docs/applications/project-management/how-to-create-a-private-python-package-repository/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def hello_word():
8585
{{< /file >}}
8686

8787

88-
5. The `setup.cfg` file lets PyPI know the README is a markdown file:
88+
5. The `setup.cfg` file lets PyPI know the README is a Markdown file:
8989

9090
{{< file "setup.cfg" >}}
9191
[metadata]

docs/applications/project-management/jupyter-notebook-on-jekyll/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The steps in this section can be completed from either your local machine or fro
140140

141141
This section demonstrates some common features of a Jupyter Notebook that can be rendered as HTML on a Jekyll blog. There are four types of outputs from a Jupyter Notebook cell covered here: MathJex through LaTeX in Markdown, an HTML table, console output, and graphs from a plotting function. The Iris dataset will be used as an example to generate the output in this guide.
142142

143-
1. Open the notebook of interest, or use the code below to create an example notebook. Run all of the relevant cells so that the output you want to display on your Jekyll blog is visible on the page. Navigate to `File > Download As > Markdown (.md)`. The markdown file will save to the default `Downloads` folder of the browser.
143+
1. Open the notebook of interest, or use the code below to create an example notebook. Run all of the relevant cells so that the output you want to display on your Jekyll blog is visible on the page. Navigate to `File > Download As > Markdown (.md)`. The Markdown file will save to the default `Downloads` folder of the browser.
144144

145145
![Jupyter Menu](jupyter_menu.png "Jupyter Menu")
146146

@@ -175,11 +175,11 @@ sns.pairplot(x_vars=["petal-length"], y_vars=["petal-width"], data=iris, hue="cl
175175
{{< /file >}}
176176

177177

178-
3. Inside the `_posts` folder of the Jekyll project, create a new markdown file called `YYYY-MM-DD-example-post.md`. If the date format is incorrect, the post may not be displayed on the blog:
178+
3. Inside the `_posts` folder of the Jekyll project, create a new Markdown file called `YYYY-MM-DD-example-post.md`. If the date format is incorrect, the post may not be displayed on the blog:
179179

180180
touch YYYY-MM-DD-example-post.md
181181

182-
4. The markdown file should begin with three dashes and contain headers which provide information for Jekyll to populate the post with the appropriate page data. The date must be in the format specified. The hours, minutes, seconds, and timezone adjustment are optional:
182+
4. The Markdown file should begin with three dashes and contain headers which provide information for Jekyll to populate the post with the appropriate page data. The date must be in the format specified. The hours, minutes, seconds, and timezone adjustment are optional:
183183

184184
{{< file "YYYY-MM-DD-example-post.md" yaml >}}
185185
---
@@ -193,7 +193,7 @@ categories:
193193
{{< /file >}}
194194

195195

196-
5. Copy the contents of the markdown file exported from Jupyter into the new post.
196+
5. Copy the contents of the Markdown file exported from Jupyter into the new post.
197197

198198
To do this from the command line, use:
199199

@@ -253,11 +253,11 @@ margin-bottom: 0; }
253253

254254
### Add an Image in Jekyll
255255

256-
Adding an image through markdown requires having the images stored in the project directory.
256+
Adding an image through Markdown requires having the images stored in the project directory.
257257

258258
1. Move all of the images exported from Jupyter into the `/assets/images` folder.
259259

260-
2. Modify the references to images within the markdown to the appropriate path. Wrap the path in two curly braces and double quotes.
260+
2. Modify the references to images within the Markdown to the appropriate path. Wrap the path in two curly braces and double quotes.
261261

262262
{{< file "YYYY-MM-DD-example-post.md" >}}
263263
![png]({{ "/assets/images/example_notebook_5_0.png" }})

docs/linode-writers-formatting-guide/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ We only accept new guides and authors through our guide submission process. To a
2828

2929
## General Layout
3030

31-
Linode Guides & Tutorials are written in [Markdown](https://en.wikipedia.org/wiki/Markdown). Our documentation site uses [Hugo](https://gohugo.io), a static site generator. Hugo-specific markdown formatting notes are given [further below](#markdown-formatting).
31+
Linode Guides & Tutorials are written in [Markdown](https://en.wikipedia.org/wiki/Markdown). Our documentation site uses [Hugo](https://gohugo.io), a static site generator. Hugo-specific Markdown formatting notes are given [further below](#markdown-formatting).
3232

3333
### Header
3434

@@ -209,7 +209,7 @@ If you wish to provide links to external sites for the user to review after goin
209209
210210
### Extend Markdown Using Shortguides
211211

212-
Using shortcodes, it is possible to extend a markdown file with another. For common tasks such as basic software installation, consider using the `content` shortcode. This allows our library to maintain consistent and up to date installation instructions for frequently used tools such as Python, MySQL, and Docker.
212+
Using shortcodes, it is possible to extend a Markdown file with another. For common tasks such as basic software installation, consider using the `content` shortcode. This allows our library to maintain consistent and up to date installation instructions for frequently used tools such as Python, MySQL, and Docker.
213213

214214
Markdown files intended to be inserted into multiple guides are called shortguides. To create a shortguide, create a directory with the name of your shortguide anywhere within `docs/`, and then create an index.md within the directory for your content (e.g. `example-shortguide-name/index.md`).
215215

@@ -270,7 +270,7 @@ Adding `os: ["mac", "linux", "windows"]` to the front matter inserts a jQuery sc
270270

271271
The shortcode should contain two parameters: filepath and operating system.
272272

273-
For example, `{{</* content "how-to-install-git-mac" mac */>}}` will insert a markdown snippet that will only be visible when the Mac button is in the active state.
273+
For example, `{{</* content "how-to-install-git-mac" mac */>}}` will insert a Markdown snippet that will only be visible when the Mac button is in the active state.
274274

275275
### Files and File Excerpts
276276

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
description: 'Content storage and delivery for unstructured data. Great for multimedia, static sites, software delivery, archives, and data backups.'
3+
title: 'Linode Object Storage'
4+
show_in_lists: true
5+
---
250 KB
Loading

0 commit comments

Comments
 (0)