Markdown/HTML Converter
Below is a brief explanation of common Markdown syntax and their corresponding HTML representations:
# H1
, ## H2
... ###### H6
<h1>H1</h1>
, <h2>H2</h2>
... <h6>H6</h6>
*italic text*
or _italic text_
, **bold text**
or __bold text__
<em>italic text</em>
, <strong>bold text</strong>
Unordered List
Markdown Syntax: - List item 1
, + List item 2
, * List item 3
HTML Equivalent: <ul><li>List item 1</li><li>List item 2</li><li>List item 3</li></ul>
Ordered List
Markdown Syntax: 1. List item 1
, 2. List item 2
HTML Equivalent: <ol><li>List item 1</li><li>List item 2</li></ol>
[Link text](http://example.com)
<a href="http://example.com">Link text</a>

<img src="http://example.com/image.jpg" alt="Alt text">
`console.log('Hello World');`
<code>console.log('Hello World');</code>
```[language]
Multi-line code...
```
<pre><code>Multi-line code...</code></pre>
> Blockquote text
> Can span multiple lines
<blockquote>Blockquote text<br>Can span multiple lines</blockquote>
---
, ***
, or ___
<hr>
Markdown’s concise syntax allows text to be both human-readable and easy to convert into structured HTML documents. It is ideal for writing documentation, blogs, README files, and more.