Online Markdown Playground
Markdown Editor example
You can use:
- bullet points
- supports Github Flavored Markdown
Embed some code
def example_function():
print("hello world")
Tables
UserID | Name |
---|---|
1 | John |
2 | Jill |
3 | Jack |
FAQ
Markdown is a lightweight markup language that you can use to add formatting elements to plaintext text documents.
Created by John Gruber in 2004, Markdown is now one of the world's most popular markup languages.
Markdown is popular because it is easy to learn and use. Its simple syntax allows users to quickly format text without needing to learn complex coding or markup languages.
Additionally, Markdown can be easily converted to HTML, making it useful for web writing and publishing.
To create headers in Markdown, you use the '#' symbol followed by a space and then the header text. The number of '#' symbols used determines the level of the header.
For example:
# Header 1
## Header 2
### Header 3
Creating lists in Markdown is simple. For an unordered list, you use asterisks (*), plus signs (+), or hyphens (-) followed by a space.
For example:
* Item 1
* Item 2
* Subitem 2.1
* Subitem 2.2
For an ordered list, you use numbers followed by a period.
For example:
1. First item
2. Second item
3. Third item
To add a link in Markdown, you use square brackets to define the text and parentheses to define the URL.
For example:
[OpenAI](https://www.openai.com)
To add an image, you use an exclamation mark followed by the same syntax as a link.
For example:
![OpenAI Logo](https://www.openai.com/assets/logo.png)