Files
TSYSDevStack/Toolbox/docs/examples/sample-markdown.md
2025-11-11 21:00:37 -06:00

62 lines
1.3 KiB
Markdown

# Sample Document for Pandoc Testing
This is a sample document to test the pandoc functionality in the TSYS Documentation & Diagrams container.
## Heading 2
This document contains various elements to test pandoc's conversion capabilities:
- Bullet list item 1
- Bullet list item 2
- Nested item
- Bullet list item 3
### Heading 3
1. Numbered list item 1
2. Numbered list item 2
1. Nested numbered item
3. Numbered list item 3
> This is a blockquote to test pandoc's handling of quoted text.
Here is some `inline code` and a code block:
```python
def hello_world():
print("Hello, world!")
return True
```
**Bold text** and *italic text* should render correctly.
## Table Example
| Column 1 | Column 2 | Column 3 |
| :--- | :--- | :--- |
| Left-aligned | Left-aligned | Left-aligned |
| Item 1 | Value 1 | Status 1 |
| Item 2 | Value 2 | Status 2 |
| Item 3 | Value 3 | Status 3 |
## Link and Image
Here is a [link to pandoc's website](https://pandoc.org).
![Placeholder image](https://placehold.co/150 "Placeholder")
## Mathematical Formula
Here is an inline equation: $E = mc^2$
And here is a block equation:
$$\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}$$
## Citations
This statement needs a citation [@example2023].
This one too [@another2023; @third2023].
# References