v0.3.0
* Getting environment variables and passwords from Vault (not tested yet) * Vault configuration to config (not tested yet) * Ability to run scripts from file on local machine on the remote host * Ability to get ouput in the notification of a list for individual commands or all commands * Make SSH connections close after all commands have been run; reuse previous connections if needed
This commit is contained in:
172
docs/themes/hugo-theme-relearn/exampleSite/content/tests/lists/_index.en.md
vendored
Normal file
172
docs/themes/hugo-theme-relearn/exampleSite/content/tests/lists/_index.en.md
vendored
Normal file
@ -0,0 +1,172 @@
|
||||
+++
|
||||
description = "Test shortcodes inside of list items"
|
||||
title = "Lists"
|
||||
+++
|
||||
|
||||
## Plain
|
||||
|
||||
- one
|
||||
- two
|
||||
- two
|
||||
|
||||
and a half
|
||||
|
||||
- three
|
||||
|
||||
## Attachments
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% attachments style="blue" /%}}
|
||||
|
||||
{{% attachments style="blue" /%}}
|
||||
|
||||
- three
|
||||
|
||||
## Badge
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% badge color="fuchsia" icon="fab fa-hackerrank" %}}Awesome{{% /badge %}}
|
||||
|
||||
{{% badge color="fuchsia" icon="fab fa-hackerrank" %}}Awesome{{% /badge %}}
|
||||
|
||||
- three
|
||||
|
||||
## Button
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% button href="https://gohugo.io/" style="warning" icon="dragon" %}}Get Hugo{{% /button %}}
|
||||
|
||||
{{% button href="https://gohugo.io/" style="warning" icon="dragon" %}}Get Hugo{{% /button %}}
|
||||
|
||||
- three
|
||||
|
||||
## Children
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% children sort="weight" %}}
|
||||
|
||||
{{% children sort="weight" %}}
|
||||
|
||||
- three
|
||||
|
||||
## Expand
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% expand title="Expand me..." %}}Thank you!{{% /expand %}}
|
||||
|
||||
{{% expand title="Expand me..." %}}Thank you!{{% /expand %}}
|
||||
|
||||
- three
|
||||
|
||||
## Icon
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% icon icon="exclamation-triangle" %}}
|
||||
|
||||
{{% icon icon="exclamation-triangle" %}}
|
||||
|
||||
- three
|
||||
|
||||
## Include
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% include file="shortcodes/INCLUDE_ME.md" %}}
|
||||
|
||||
{{% include file="shortcodes/INCLUDE_ME.md" %}}
|
||||
|
||||
- three
|
||||
|
||||
## Math
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{< math align="center" >}}
|
||||
$$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$$
|
||||
{{< /math >}}
|
||||
|
||||
{{< math align="center" >}}
|
||||
$$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$$
|
||||
{{< /math >}}
|
||||
|
||||
- three
|
||||
|
||||
## Mermaid
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{< mermaid align="center" zoom="true" >}}
|
||||
graph LR;
|
||||
If --> Then
|
||||
Then --> Else
|
||||
{{< /mermaid >}}
|
||||
|
||||
{{< mermaid align="center" zoom="true" >}}
|
||||
graph LR;
|
||||
If --> Then
|
||||
Then --> Else
|
||||
{{< /mermaid >}}
|
||||
|
||||
- three
|
||||
|
||||
## Notice
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% notice style="primary" title="There may be pirates" icon="skull-crossbones" %}}
|
||||
It is all about the boxes.
|
||||
{{% /notice %}}
|
||||
|
||||
{{% notice style="primary" title="There may be pirates" icon="skull-crossbones" %}}
|
||||
It is all about the boxes.
|
||||
{{% /notice %}}
|
||||
|
||||
- three
|
||||
|
||||
## Siteparam
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{% siteparam name="editURL" %}}
|
||||
|
||||
{{% siteparam name="editURL" %}}
|
||||
|
||||
- three
|
||||
|
||||
## Tabs
|
||||
|
||||
- one
|
||||
- two
|
||||
- {{< tabs >}}
|
||||
{{% tab title="python" %}}
|
||||
```python
|
||||
print("Hello World!")
|
||||
```
|
||||
{{% /tab %}}
|
||||
{{% tab title="bash" %}}
|
||||
```bash
|
||||
echo "Hello World!"
|
||||
```
|
||||
{{% /tab %}}
|
||||
{{< /tabs >}}
|
||||
|
||||
{{< tabs >}}
|
||||
{{% tab title="python" %}}
|
||||
```python
|
||||
print("Hello World!")
|
||||
```
|
||||
{{% /tab %}}
|
||||
{{% tab title="bash" %}}
|
||||
```bash
|
||||
echo "Hello World!"
|
||||
```
|
||||
{{% /tab %}}
|
||||
{{< /tabs >}}
|
||||
|
||||
- three
|
5
docs/themes/hugo-theme-relearn/exampleSite/content/tests/lists/_index.pir.md
vendored
Normal file
5
docs/themes/hugo-theme-relearn/exampleSite/content/tests/lists/_index.pir.md
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
description = "Test shortcodes inside of list items"
|
||||
title = "Lists"
|
||||
+++
|
||||
{{< piratify >}}
|
Reference in New Issue
Block a user