Advertentie

Markdown Syntaxisgids

Volledige referentie voor markdown-opmaak met weergegeven voorbeelden

1. Koppen

Koppen creëren structuur en hiërarchie in uw document. Gebruik # symbolen (1-6) om koppen van verschillende niveaus te maken.

Markdown
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Gerenderd

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
Tip: Laat altijd een spatie na de # symbolen. Begin met H1 voor de hoofdtitel en gebruik daarna H2-H6 voor subsecties.

2. Tekstopmaak

Markdown biedt verschillende manieren om tekst te benadrukken en op te maken.

Markdown
**Bold text** or __also bold__

*Italic text* or _also italic_

***Bold and italic***

~~Strikethrough text~~

This is `inline code`

Normal paragraph text.
Gerenderd

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

Markdown
- First item
- Second item
  - Nested item
  - Another nested
- Third item

* Asterisks work too
+ Plus signs also work
Gerenderd
  • First item
  • Second item
    • Nested item
    • Another nested
  • Third item
  • Asterisks work too
  • Plus signs also work

Geordende lijsten

Markdown
1. First step
2. Second step
3. Third step
   1. Sub-step A
   2. Sub-step B
4. Fourth step
Gerenderd
  1. First step
  2. Second step
  3. Third step
    1. Sub-step A
    2. Sub-step B
  4. Fourth step

5. Code

Toon code met de juiste opmaak met inline code of omheinde codeblokken.

Inline code

Markdown
Use `const` for constants.

Run `npm install` to begin.
Gerenderd

Use const for constants.

Run npm install to begin.

Codeblokken

Markdown
```javascript
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('World'));
```
Gerenderd
function greet(name) {
  return `Hello, ${name}!`;
}

console.log(greet('World'));
Taalhint: Voeg de taalnaam toe na de opening ``` om syntaxiskleuring in te schakelen (bijv. ```javascript, ```python, ```css).

6. Citaten

Gebruik citaten om belangrijke tekst, aanhalingen of notities te benadrukken.

Markdown
> This is a blockquote.
> It can span multiple lines.

> Nested quotes work too:
>
> > This is a nested quote.
>
> Back to the outer quote.
Gerenderd
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 (-).

Markdown
| Feature | Status |
|---------|--------|
| Templates | 16 available |
| Colors | 20 schemes |
| Fonts | 35+ families |

| Left | Center | Right |
|:-----|:------:|------:|
| L    | C      | R     |
Gerenderd
Feature Status
Templates16 available
Colors20 schemes
Fonts35+ families
Left Center Right
L C R
Kolomuitlijning: Gebruik dubbele punten in de scheidingsrij: :--- voor links, :---: voor gecentreerd, ---: voor rechts uitlijnen.

8. Horizontale lijnen

Maak visuele scheidingen tussen secties met drie of meer koppeltekens, sterretjes of underscores.

Markdown
Section one content.

---

Section two content.

***

Section three content.
Gerenderd

Section one content.


Section two content.


Section three content.

9. Takenlijsten

Maak interactieve checklists om voortgang of to-do items bij te houden.

Markdown
## Project Tasks

- [x] Design mockups
- [x] Write documentation
- [ ] Code review
- [ ] Deploy to production
Gerenderd

Project Tasks

  • Design mockups
  • Write documentation
  • Code review
  • Deploy to production

10. Geavanceerde functies

Uitgebreide markdown-syntax voor complexe documenten.

Voetnoten

Markdown
Here is a sentence with a footnote[^1].

[^1]: This is the footnote content.
Gerenderd

Here is a sentence with a footnote[1].


[1] This is the footnote content.

Definitielijsten

Markdown
Term 1
: Definition of term 1

Term 2
: Definition of term 2
Gerenderd
Term 1
Definition of term 1
Term 2
Definition of term 2

Tekens escapen

Escape-tekens
\*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
![alt](img.jpg) 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
Advertentie