Markdown Syntaxisgids
Volledige referentie voor markdown-opmaak met weergegeven voorbeelden
Inhoudsopgave
1. Koppen
Koppen creëren structuur en hiërarchie in uw document. Gebruik # symbolen (1-6) om koppen van verschillende niveaus te maken.
# 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. Tekstopmaak
Markdown biedt verschillende manieren om tekst te benadrukken en op te maken.
**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. Lijsten
Maak georganiseerde content met ongeordende (opsommings-) en geordende (genummerde) lijsten.
Ongeordende lijsten
- 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
Geordende lijsten
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. Links & Afbeeldingen
Voeg hyperlinks toe en sluit afbeeldingen in uw documenten in.
Links
[Link text](https://example.com)
[Link with title](https://example.com "Hover title")
Autolink: <https://example.com>
Email: <[email protected]>
Afbeeldingen


[](full.jpg)
Images display with alt text for accessibility
5. Code
Toon code met de juiste opmaak met inline code of omheinde codeblokken.
Inline code
Use `const` for constants.
Run `npm install` to begin.
Use const for constants.
Run npm install to begin.
Codeblokken
```javascript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
```
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
6. Citaten
Gebruik citaten om belangrijke tekst, aanhalingen of notities te benadrukken.
> 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. Tabellen
Maak gestructureerde datatabellen met pipes (|) en koppeltekens (-).
| 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. Horizontale lijnen
Maak visuele scheidingen tussen secties met drie of meer koppeltekens, sterretjes of underscores.
Section one content.
---
Section two content.
***
Section three content.
Section one content.
Section two content.
Section three content.
9. Takenlijsten
Maak interactieve checklists om voortgang of to-do items bij te houden.
## 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. Geavanceerde functies
Uitgebreide markdown-syntax voor complexe documenten.
Voetnoten
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.
Definitielijsten
Term 1
: Definition of term 1
Term 2
: Definition of term 2
- Term 1
- Definition of term 1
- Term 2
- Definition of term 2
Tekens escapen
\*Not italic\* → *Not italic*
\# Not a heading → # Not a heading
\`Not code\` → `Not code`
Snelreferentie
# Heading 1
Kop
**bold**
Vetgedrukte tekst
*italic*
Cursieve tekst
[text](url)
Link

Afbeelding
`code`
Inline code
```lang
Codeblok
> quote
Citaat
- item
Opsommingslijst
1. item
Genummerde lijst
---
Horizontale lijn
- [x] done
Takenlijstitem
Klaar om te schrijven?
Gebruik Velvet MD om uw markdown om te zetten in prachtig opgemaakte documenten.
Velvet MD openen