Markdown Preview

GFM support, syntax highlighting, tables, task lists, and exports

151 words961 characters62 lines10 headings1 links0 images2 code blocks

Markdown Source

Preview

Welcome to Markdown Preview

This is a bold and italic text example. You can also use strikethrough.

GitHub Flavored Markdown

Tables

FeatureStatus
TablesSupported
Task ListsSupported
AutolinksSupported
Syntax HighlightingSupported

Task Lists

  • Completed task
  • Another completed task
  • Pending task
  • Another pending task
  • 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)Link
    ![alt](url)Image
    - itemUnordered list
    1. itemOrdered list
    - [ ] taskTask (GFM)
    > quoteBlockquote
    `code`Inline code
    ```langCode block
    ---Horizontal rule
    | a | b |Table (GFM)