This project is a simple Python script that converts Markdown text into HTML. It supports various Markdown features such as headers, bold and italic text, links, lists, code blocks, blockquotes, horizontal rules, and paragraphs.
- Convert Markdown headers (H1 to H6)
- Bold text with
**bold**
- Italic text with
*italic*
- Hyperlinks with
[link text](URL)
- Unordered and ordered lists
- Code blocks with triple backticks
- Blockquotes
- Horizontal rules
- Automatically wraps paragraphs in
<p>
tags
- Python 3.x
argparse
andlogging
modules (included in the standard library)
-
Clone the repository:
git clone https://github.com/yourusername/markdown-to-html-converter.git cd markdown-to-html-converter
or just download it and run a cmd terminal in its location
- python converter.py input.md output.html -v