Markdown
A lightweight markup language using plain text formatting that converts to HTML.
Created by John Gruber in 2004, Markdown uses simple symbols (# for headers, * for bold) that are readable as text and convert cleanly to HTML. Popular for documentation, blogs, and README files.
Example# Heading, **bold**, [link](url)
GitHub Flavored Markdown (GFM)
GitHub's extended Markdown specification with tables, task lists, and enhanced code blocks.
GFM adds features beyond original Markdown: tables using pipes, task lists with checkboxes, strikethrough, autolinks, and fenced code blocks with language-specific syntax highlighting. It's become the de facto standard.
Example| Column | Column |, - [ ] Task, ~~strikethrough~~