blob: 68038c2c3a941d99a4e0382231200c398ef15250 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
---
title: "YAML: does it fit in Markdown?"
author: test
tags:
- yaml
- markdown
wrappedtext: >
this is really a
single line of text
despite appearances
include_newlines: |
exactly as you see
will appear these three
lines of poetry
bool: false
people:
-
name: John D'vloper
job: Developer
alive: true
hobbies:
- Amateur radio
- Pet adoption & fostering
- Puzzle
-
name: Tabitha Bitumen
job: Developer
hobbies:
- Ice skating
- Water polo
- Caving
---
# YAML: does it fit in Markdown?
Lots of Static Site Generators like Jekyll, Hugo, Lektor and more use
a standard format: Markdown with YAML Front Matter.
Why
---
Because blog posts need metadata!
|