Markdown Preview
GFM support, syntax highlighting, tables, task lists, and exports
151 words961 characters62 lines10 headings1 links0 images2 code blocks
Table of Contents
Markdown Source
Preview
Welcome to Markdown Preview
This is a bold and italic text example. You can also use strikethrough.
GitHub Flavored Markdown
Tables
| Feature | Status |
|---|---|
| Tables | Supported |
| Task Lists | Supported |
| Autolinks | Supported |
| Syntax Highlighting | Supported |
Task Lists
Autolinks
Visit https://example.com for more info!
Code Examples
JavaScript
javascript500">"text-purple-500">function greet(name) {
500">"text-purple-500">const message = "Hello, " + name;
console.log(message);
500">"text-purple-500">return message;
}
500">// Call the 500">"text-purple-500">function
greet("World");
Python
python"text-purple-500">def greet(name):
message = f"Hello, {name}"
print(message)
"text-purple-500">return message
# Call the function
greet("World")
Blockquote
"The best way to predict the future is to invent it."
— Alan Kay
Visit Typography Tools for more utilities!
Quick Reference
# HeadingHeading 1## HeadingHeading 2**bold**Bold*italic*Italic~~strike~~Strikethrough[link](url)LinkImage- itemUnordered list1. itemOrdered list- [ ] taskTask (GFM)> quoteBlockquote`code`Inline code```langCode block---Horizontal rule| a | b |Table (GFM)