Andrew Woodlee
4b382bddd9
* 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
2.0 KiB
2.0 KiB
+++ description = "Testing different markdown constructs inside of tables" title = "Tables" +++
Lines and Paragraphs
i |
---|
HTML Paragraph I HTML Paragraph II |
i |
---|
HTML Line I HTML Line II |
i |
---|
HTML Line I HTML Line II |
i |
---|
Markdown Multicell I |
Markdown Multicell II |
Headings
i |
---|
HTML h1 |
i |
---|
HTML h2 |
i |
---|
HTML h3 |
i |
---|
HTML h4 |
i |
---|
HTML h5 |
i |
---|
HTML h6 |
Lists
i |
---|
|
Code
i |
---|
Markdown Inline |
i |
---|
HTML Inline |
i |
---|
|
Links & Images
i |
---|
Markdown Link |
i |
---|
https://example.com |
i |
---|
Other
i |
---|
HTML Blockquote |
i |
---|
|
i |
---|
Shortcodes
i |
---|
{{% badge %}}Important{{% /badge %}} |
i |
---|
{{% button href="https://gohugo.io/" %}}Get Hugo{{% /button %}} |
i |
---|
{{% expand title="Expand me..." %}}Thank you!{{% /expand %}} |
i |
---|
{{% icon heart %}} |
i |
---|
{{% include file="/shortcodes/INCLUDE_ME.md" %}} |
i |
---|
{{< 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 >}} |
i |
---|
{{< math >}}$\sqrt{3}${{< /math >}} |
i |
---|
{{< mermaid align="center" >}} |
graph LR; |
If --> Then |
Then --> Else |
{{< /mermaid >}} |
i |
---|
{{% siteparam name="editURL" %}} |
i |
---|
{{< tabs >}} |
{{% tab title="python" %}} |
print("Hello World!")
{{% /tab %}} {{% tab title="bash" %}}
echo "Hello World!"
{{% /tab %}} {{< /tabs >}} |