mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2026-05-22 03:09:27 +00:00
37 lines
882 B
Markdown
37 lines
882 B
Markdown
---
|
|
title: "Sample Markdown Blog Post"
|
|
date: 2024-06-01T12:00:00Z
|
|
---
|
|
|
|
## Sample Markdown Blog Post
|
|
|
|
A sample blog post to test markdown rendering in PaperMod. This post includes various markdown elements such as headings, images, and code blocks. The content is meant to verify that all markdown features are displayed correctly in the theme.
|
|
|
|
### Sample Heading
|
|
|
|
Knock knock. Who's there? Lettuce. Lettuce who? Lettuce in, it's cold out here!
|
|
|
|

|
|
|
|
```javascript
|
|
function greet(name) {
|
|
return `Hello, ${name}!`;
|
|
}
|
|
console.log(greet('World'));
|
|
```
|
|
|
|
```python {hl_lines="2",linenos="table"}
|
|
def greet(name):
|
|
return f"Hello, {name}!"
|
|
|
|
print(greet("World"))
|
|
```
|
|
|
|
#### Another Heading
|
|
|
|
| This is a table | With some data |
|
|
|-----------------|----------------|
|
|
| Row 1 | Data 1 |
|
|
| Row 2 | Data 2 |
|
|
|