No Posts found
Picture of the authorBuilt by Aryan Randeriya
Picture of the authorBuilt using Next.js | VercelPicture of the author
Example post
Example postLorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vehicula bibendum lorem. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla congue turpis eu eleifend pharetra. Suspendisse volutpat eu diam nec hendrerit. Integer quis dui non mauris ultrices tempor eget in arcu. Nullam molestie sodales dapibus. Pellentesque quis pretium enim, id rutrum lectus. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Donec lorem neque, venenatis et mattis at, rutrum eu nibh. Vivamus interdum nibh vitae nibh euismod, ut laoreet lorem scelerisque. Nullam magna enim, posuere ut feugiat id, consequat quis nulla. Nullam dignissim commodo nunc eget tempus. Donec nec nunc vel dolor pulvinar tincidunt. Fusce urna arcu, ullamcorper eu mi sit amet, vehicula bibendum urna.
testing
test
example
post
Profile Picture
by Aryan Randeriya
5 Days ago
Estimated Read Time:  0.82 Minutes

 

Markdown Elements

1. Headers

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

2. Emphasis

  • Italic text (using asterisks)

  • Italic text (using underscores)

  • Bold text (using asterisks)

  • Bold text (using underscores)

  • Bold and italic text (using asterisks)

  • Bold and italic text (using underscores)

3. Lists

Unordered List

  • Item 1

  • Item 2

    • Subitem 1

    • Subitem 2

  • Item 3

Ordered List

  1. First item

  2. Second item

  3. Third item

Task List

  • Completed task

  • Incomplete task

5. Images

Image## 6. Blockquotes

This is a blockquote.

It can span multiple lines.

7. Code

Inline Code

Use the print() function to display output.

Code Blocks

python
1def hello_world(): 2 print("Hello, World!")

 

javascript
1function helloWorld() { 2 console.log("Hello, World!"); 3}

8. Horizontal Rule


9. Tables

Header 1Header 2Header 3
Row 1Data 1Data 2
Row 2Data 3Data 4
Row 3Data 5Data 6

10. Footnotes

Here is a footnote reference[1].

[1]

This is the footnote.

11. Strikethrough

This text is strikethrough.

12. Inline HTML

You can use <span style="color:red;">HTML tags</span> within Markdown.

13. Details/Details Tag

html
1<details> 2 <summary>Click to expand!</summary> 3 This is hidden text that can be shown or hidden. 4</details>

 

Scroll to Top

Comments