Markdown Syntax Help

 More information
Wiki Page Editor and Markdown Syntax Markdown Syntax
Bold text
**text** or __text__
Italic text
*text* or _text_
Deleted text
~~text~~
Headings
# Heading 1, ## Heading 2, ### Heading 3
Horizontal rule
--- or ***
External links
[text](url)
Image
![alt ext](image.jpg)
Lists
* for bullet lists, 1., 2., 3. etc for numbered lists, Lists
for bullet lists
* or -
for numbered lists
1. First
2. Second
3. Third

Lists task
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Blockquotes
This is a blockquote.
It can span multiple lines.
Tables
| row1-col1 | row1-col2 | row1-col3 |
| --------- | --------- | --------- |
| row2-col1 | row2-col2 | row2-col3 |
Footnote
Here's a sentence with a footnote. [^1]
[^1]: This is the footnote.
Code
Simple Code
`Code sample`
For code Block
```php
echo "Hello, World!";
```