A simple Markdown to HTML converter in C++, simulating how parsers work.
- Headings (
#to######) - Bold and Italic (
**bold**,*italic*) - Links (
[text](url)) - Images (
) - Horizontal rules (
---) - Code blocks (```)
- Paragraphs
- Nested lists (1 level)
g++ converter.cpp -o converter
./converterMake sure sample.md exists in the same directory before running the program.