Guida alla Sintassi Markdown
Riferimento completo per la formattazione markdown con esempi visualizzati
Indice
1. Intestazioni
Le intestazioni creano struttura e gerarchia nel documento. Usa i simboli # (1-6) per creare intestazioni di diversi livelli.
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
2. Formattazione del Testo
Markdown offre diversi modi per enfatizzare e formattare il testo.
**Bold text** or __also bold__
*Italic text* or _also italic_
***Bold and italic***
~~Strikethrough text~~
This is `inline code`
Normal paragraph text.
Bold text or also bold
Italic text or also italic
Bold and italic
Strikethrough text
This is inline code
Normal paragraph text.
3. Elenchi
Crea contenuti organizzati con elenchi non ordinati (puntati) e ordinati (numerati).
Elenchi non ordinati
- First item
- Second item
- Nested item
- Another nested
- Third item
* Asterisks work too
+ Plus signs also work
- First item
- Second item
- Nested item
- Another nested
- Third item
- Asterisks work too
- Plus signs also work
Elenchi ordinati
1. First step
2. Second step
3. Third step
1. Sub-step A
2. Sub-step B
4. Fourth step
- First step
- Second step
- Third step
- Sub-step A
- Sub-step B
- Fourth step
4. Link & Immagini
Aggiunga collegamenti ipertestuali e incorpori immagini nei Suoi documenti.
Link
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")
Autolink: <https://example.com>
Email: <[email protected]>
Immagini


[](full.jpg)
Images display with alt text for accessibility
5. Codice
Visualizza il codice con la formattazione corretta usando codice inline o blocchi di codice recintati.
Codice inline
Use `const` for constants.
Run `npm install` to begin.
Use const for constants.
Run npm install to begin.
Blocchi di codice
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
```
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
6. Citazioni
Usa le citazioni per evidenziare testo importante, citazioni o note.
> This is a blockquote.
> It can span multiple lines.
> Nested quotes work too:
>
> > This is a nested quote.
>
> Back to the outer quote.
This is a blockquote. It can span multiple lines.
Nested quotes work too:This is a nested quote.Back to the outer quote.
7. Tabelle
Crea tabelle di dati strutturate usando pipe (|) e trattini (-).
| Feature | Status |
|---------|--------|
| Templates | 16 available |
| Colors | 20 schemes |
| Fonts | 35+ families |
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R |
| Feature | Status |
|---|---|
| Templates | 16 available |
| Colors | 20 schemes |
| Fonts | 35+ families |
| Left | Center | Right |
|---|---|---|
| L | C | R |
8. Linee orizzontali
Crea separazioni visive tra le sezioni usando tre o più trattini, asterischi o underscore.
Section one content.
---
Section two content.
***
Section three content.
Section one content.
Section two content.
Section three content.
9. Liste di attività
Crea checklist interattive per monitorare i progressi o gli elementi da fare.
## Project Tasks
- [x] Design mockups
- [x] Write documentation
- [ ] Code review
- [ ] Deploy to production
Project Tasks
- Design mockups
- Write documentation
- Code review
- Deploy to production
10. Funzionalità avanzate
Sintassi markdown estesa per documenti complessi.
Note a piè di pagina
Here is a sentence with a footnote[^1].
[^1]: This is the footnote content.
Here is a sentence with a footnote[1].
[1] This is the footnote content.
Liste di definizioni
Term 1
: Definition of term 1
Term 2
: Definition of term 2
- Term 1
- Definition of term 1
- Term 2
- Definition of term 2
Escape dei caratteri
\*Not italic\* → *Not italic*
\# Not a heading → # Not a heading
\`Not code\` → `Not code`
Riferimento rapido
# Heading 1
Intestazione
**bold**
Testo in grassetto
*italic*
Testo in corsivo
[text](url)
Link

Immagine
`code`
Codice inline
```lang
Blocco di codice
> quote
Citazione
- item
Elenco puntato
1. item
Elenco numerato
---
Linea orizzontale
- [x] done
Elemento lista di attività
Pronto a scrivere?
Usi Velvet MD per trasformare il Suo markdown in documenti splendidamente formattati.
Apra Velvet MD