Skip to content

Sreekar-Reddy-D/MarkLite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MarkLite

A simple Markdown to HTML converter in C++, simulating how parsers work.

Features Supported

  • Headings (# to ######)
  • Bold and Italic (**bold**, *italic*)
  • Links ([text](url))
  • Images (![alt](image.jpg))
  • Horizontal rules (---)
  • Code blocks (```)
  • Paragraphs
  • Nested lists (1 level)

How to Compile and Run

Using g++:

g++ converter.cpp -o converter
./converter

Make sure sample.md exists in the same directory before running the program.

About

MarkLite is a beginner-friendly project that converts Markdown files (`.md`) into HTML using pure C++. It helps demystify how basic text parsers work under the hood — no libraries or frameworks involved.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors