+++
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
Lists
i |
- HTML List Item I
- HTML List Item II
|
Code
Links & Images
i |
|
Other
i |
HTML Blockquote with nested Paragraph
|
Shortcodes
i |
{{% badge %}}Important{{% /badge %}} |
i |
{{% expand title="Expand me..." %}}Thank you!{{% /expand %}} |
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 name="python" %}} |
print("Hello World!")
{{% /tab %}}
{{% tab name="bash" %}}
echo "Hello World!"
{{% /tab %}}
{{< /tabs >}} |