36 lines
670 B
Markdown
36 lines
670 B
Markdown
|
+++
|
||
|
title = 'My Second Post'
|
||
|
date = 2024-02-01T04:55:54+05:30
|
||
|
draft = false
|
||
|
+++
|
||
|
|
||
|
## Heading of the Post
|
||
|
|
||
|
Start writing your content here. You can add more sections, images, links, and various formatting to enrich your post. Here are some ideas to get started:
|
||
|
|
||
|
### Subheading for a Section
|
||
|
|
||
|
Discuss a specific topic in detail here. You can add personal insights, professional tips, or any relevant information.
|
||
|
|
||
|
#### Example Code Blocks
|
||
|
|
||
|
##### JavaScript
|
||
|
|
||
|
```javascript
|
||
|
console.log("Welcome to my second post!");
|
||
|
```
|
||
|
|
||
|
##### Go
|
||
|
|
||
|
```go
|
||
|
fmt.Println("Welcome to my second post!")
|
||
|
```
|
||
|
|
||
|
##### Python
|
||
|
|
||
|
```python
|
||
|
for i in range(10):
|
||
|
print("Welcome to my second post!")
|
||
|
|
||
|
```
|