signup
signin
Markdown Editor
Copy
# Headers Use the # symbol to create headers. The number of # symbols determines the level of the header. # Headers 1 ## Headers 2 ### Headers 3 #### Headers 4 ##### Headers 5 ###### Headers 6
# Emphasis You can emphasize text by making it bold or italicized. **Bold text** *Italicized text* ***Bold and italicized text***
# Lists ### Unordered List Use -, *, or + symbols to create an unordered list. - Item 1 - Item 2 - Sub-item 2.1 - Sub-item 2.2 ### Ordered List Use numbers to create an ordered list. 1. First item 2. Second item 3. Third item
# Links You can add hyperlinks to text. [Link Text](https://www.google.com)
# Images To insert an image, use the ! symbol along with the image link. 
# Code You can insert code inline or as a block of multiple lines. ### Inline Code `Code` ### Code Block Use code blocks for writing multiple lines of code. ```python print("Code Block") ```
# Blockquote Use the > symbol to write a blockquote. > This is a blockquote.
# Horizontal Rule You can use horizontal lines to separate sections. ---
# Task List Create a to-do list with checkboxes. - [x] Completed task - [ ] Incomplete task
# Table Use | and - symbols to create a table. | Header 1 | Header 2 | |--------|--------| | Item 1 | Item 2 | | Item 3 | Item 4 |
Preview