Skip to content

Commit

Permalink
Move body below params
Browse files Browse the repository at this point in the history
  • Loading branch information
willfaught committed Jul 8, 2024
1 parent d1845b8 commit 6869529
Showing 1 changed file with 28 additions and 28 deletions.
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,6 @@ The `paige/code` shortcode provides highlighted code.
{{< /paige/code >}}
```
Body: Required. String. The code.
Parameters:
<dl>
Expand All @@ -444,6 +442,8 @@ Parameters:
<dd>Optional. String. Hugo <a href="https://gohugo.io/content-management/syntax-highlighting/#highlight-shortcode">highlight options</a>.</dd>
</dl>
Body: Required. String. The code.
### Email
The `paige/email` shortcode hides e-mail addresses from robots.
Expand All @@ -455,15 +455,15 @@ The `paige/email` shortcode hides e-mail addresses from robots.
{{< /paige/email >}}
```
Body: Required. String. Markdown. The content.
Parameters:
<dl>
<dt><code>address</code></dt>
<dd>Required. Position 0. String. The e-mail address.</dd>
</dl>
Body: Required. String. Markdown. The content.
### Figure
The `paige/figure` shortcode provides a figure.
Expand All @@ -483,8 +483,6 @@ The `paige/figure` shortcode provides a figure.
{{< /paige/figure >}}
```
Body: Required. String. Markdown. The content.
Parameters:
<dl>
Expand All @@ -508,6 +506,8 @@ Parameters:
<dd>Optional. String. CSS value. Total width.</dd>
</dl>
Body: Required. String. Markdown. The content.
### Gallery
The `paige/gallery` shortcode provides an arrangement of images.
Expand All @@ -534,8 +534,6 @@ The `paige/gallery` shortcode provides an arrangement of images.
{{< /paige/gallery >}}
```
Body: Optional. String. HTML. The images.
Parameters:
<dl>
Expand Down Expand Up @@ -573,6 +571,8 @@ Parameters:
<dd>Optional. String. CSS value. Image width.</dd>
</dl>
Body: Optional. String. HTML. The images.
### Icon
The `paige/icon` shortcode provides a web font icon.
Expand All @@ -584,8 +584,6 @@ The `paige/icon` shortcode provides a web font icon.
url="" >}}
```
Body: None.
Parameters:
<dl>
Expand All @@ -597,6 +595,8 @@ Parameters:
<dd>Optional. String. URL. Example: <code>https://github.com/account/project</code>. E-mails in URLs with a <code>mailto:</code> scheme are protected from web crawlers.</dd>
</dl>
Body: None.
### Image
The `paige/image` shortcode provides an image.
Expand All @@ -623,8 +623,6 @@ The `paige/image` shortcode provides an image.
width="" >}}
```
Body: None.
Parameters:
<dl>
Expand Down Expand Up @@ -666,6 +664,8 @@ Parameters:
<dd>Optional. String. CSS value. Image width.</dd>
</dl>
Body: None.
### Quote
The `paige/quote` shortcode provides a quotation.
Expand All @@ -677,13 +677,13 @@ The `paige/quote` shortcode provides a quotation.
{{< /paige/quote >}}
```
Body: Required. String. Markdown. The quotation.
Parameters:
<dt><code>cite</code></dt>
<dd>Optional. String. Plain text. Citation.</dd>
Body: Required. String. Markdown. The quotation.
### Tabs
The `paige/tabs` shortcode provides tab buttons and tab panes.
Expand All @@ -695,10 +695,10 @@ It must contain one `paige/tabs/buttons` shortcode, and then one `paige/tabs/pan
{{< /paige/tabs >}}
```
Body: Required. String. HTML. The tab buttons and tab panes.
Parameters: None.
Body: Required. String. HTML. The tab buttons and tab panes.
The `paige/tabs/buttons` shortcode provides tab buttons.
It must contain one or more `paige/tabs/button` shortcodes.
Each `paige/tabs/button` shortcode corresponds to the `paige/tabs/pane` shortcode in the same position.
Expand All @@ -709,10 +709,10 @@ Each `paige/tabs/button` shortcode corresponds to the `paige/tabs/pane` shortcod
{{< /paige/tabs/buttons >}}
```
Body: Required. String. HTML. The tab buttons.
Parameters: None.
Body: Required. String. HTML. The tab buttons.
The `paige/tabs/button` shortcode provides a tab button.
```
Expand All @@ -721,10 +721,10 @@ The `paige/tabs/button` shortcode provides a tab button.
{{< /paige/tabs/button >}}
```
Body: Required. String. Markdown. The tab button content.
Parameters: None.
Body: Required. String. Markdown. The tab button content.
The `paige/tabs/panes` shortcode provides tab panes.
It must contain one or more `paige/tabs/pane` shortcodes.
Each `paige/tabs/pane` shortcode corresponds to the `paige/tabs/button` shortcode in the same position.
Expand All @@ -735,10 +735,10 @@ Each `paige/tabs/pane` shortcode corresponds to the `paige/tabs/button` shortcod
{{< /paige/tabs/panes >}}
```
Body: Required. String. HTML. The tab panes.
Parameters: None.
Body: Required. String. HTML. The tab panes.
The `paige/tabs/pane` shortcode provides a tab pane.
```
Expand All @@ -747,10 +747,10 @@ The `paige/tabs/pane` shortcode provides a tab pane.
{{< /paige/tabs/pane >}}
```
Body: Required. String. Markdown. The tab pane content.
Parameters: None.
Body: Required. String. Markdown. The tab pane content.
### Vimeo
The `paige/vimeo` shortcode provides a Vimeo video.
Expand Down Expand Up @@ -785,8 +785,6 @@ The `paige/vimeo` shortcode provides a Vimeo video.
width="" >}}
```
Body: None.
Parameters:
<dl>
Expand Down Expand Up @@ -844,6 +842,8 @@ Parameters:
<dd>Optional. String. CSS value. Video width.</dd>
</dl>
Body: None.
See [Vimeo documentation](https://vimeo.zendesk.com/hc/en-us/articles/360001494447-Player-parameters-overview) for more detail.
### YouTube
Expand All @@ -868,8 +868,6 @@ The `paige/youtube` shortcode provides a YouTube video.
width="" >}}
```
Body: None.
Parameters:
<dl>
Expand Down Expand Up @@ -903,6 +901,8 @@ Parameters:
<dd>Optional. String. CSS value. Video width.</dd>
</dl>
Body: None.
## Customize
### Include
Expand Down

0 comments on commit 6869529

Please sign in to comment.