Answers for "learn markdown"

9

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
4

markdown image

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)
Posted by: Guest on August-18-2020
5

markdown

Markdown is a lightweight markup language with plain-text-formatting syntax,
created in 2004 by John Gruber and Aaron Swartz.
Markdown is often used for formatting readme files,
for writing messages in online discussion forums, 
and to create rich text using a plain text editor.
Posted by: Guest on November-06-2020
1

what is a markdown .md file

A file with the .MD or .MARKDOWN file extension might be a Markdown Documentation file. It's a plain text file that uses the Markdown language to describe how to convert a text document to HTML. README.md is a common MD file that holds text instructions.
Posted by: Guest on April-04-2020
0

learning markdonw

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag
Posted by: Guest on July-20-2020

Browse Popular Code Answers by Language