“Folha de dicas de marcação” Respostas de código

Tabela de marcação

Layout:
| Tables   |      Are      |  Cool |
|----------|:-------------:|------:|
| col 1 is |  left-aligned | $1600 |
| col 2 is |    centered   |   $12 |
| col 3 is | right-aligned |    $1 |
  
An amazing website for building a table in markdown:
https://www.tablesgenerator.com/markdown_tables
Josepe

Folha de dicas de marcação

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
I don't know

Código em Markdown

```<name of the language>
<code>
```

EXAMPLE

```python
print("Hello World")
```
Fylls

Sintaxe do hiperlink de marcação

[Link to Google](https://www.google.com)
Alex Georgousis

Linha horizontal de marcação

***

---

_________________

O que é atingir o Markdown

Wrap your text in tildes(~) for strikethrough'd text.
~~Strikedthrough~~
CodeBaron

Respostas semelhantes a “Folha de dicas de marcação”

Perguntas semelhantes a “Folha de dicas de marcação”

Procure respostas de código populares por idioma

Procurar outros idiomas de código