Answers for "markdown language syntax"

8

markdown language syntax

Credit goes to [The Markdown Guide](https://www.markdownguide.org)!

### Heading

# H1
## H2
### H3

### Bold

**bold text**

### Italic

*italicized text*

### Blockquote

> blockquote

### Ordered List

1. First item
2. Second item
3. Third item

### Unordered List

- First item
- Second item
- Third item

### Code

`code`

### Horizontal Rule

---

### Link

[Markdown Guide](https://www.markdownguide.org)

### Image

![alt text](https://www.markdownguide.org/assets/images/tux.png)

## Extended Syntax

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.

### Table

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

### Fenced Code Block

```
{
  "firstName": "John",
  "lastName": "Smith",
  "age": 25
}
```

### Footnote

Here's a sentence with a footnote. [^1]

[^1]: This is the footnote.

### Heading ID

### My Great Heading {#custom-id}

### Definition List

term
: definition

### Strikethrough

~~The world is flat.~~

### Task List

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
Posted by: Guest on July-01-2021
7

italics markdown

# Italic
An example of *italic* text
An example of *italic* text

# Bold
An example of **bold text**
An example of __bold text__

# Bold and Italic
An example of ***bold and italic text***
An example of ___bold and italic text___
Posted by: Guest on October-03-2020
11

bold markdown

# Bold
I just love **bold text**.
I just love __bold text__.
Love**is**bold

# Italic
Italicized text is the *cat's meow*.
Italicized text is the _cat's meow_.
A*cat*meow
Posted by: Guest on March-18-2020
5

Markdown heading

# Title 	//Creates a h1
## Title 	//Creates a h2
##### Title  //Creates a h5
Posted by: Guest on October-25-2020
3

bold in markdown

**This will be bold**
Posted by: Guest on August-22-2020

Browse Popular Code Answers by Language