blob: 811aeecc8ac93d45b8f0483c82869d470471fcfb (
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
|
# Test the convert commands.
hugo convert -h
stdout 'Convert front matter to another format'
hugo convert toJSON -h
stdout 'to use JSON for the front matter'
hugo convert toTOML -h
stdout 'to use TOML for the front matter'
hugo convert toYAML -h
stdout 'to use YAML for the front matter'
hugo convert toJSON -o myjsoncontent
stdout 'processing 3 content files'
grep '^{' myjsoncontent/content/mytoml.md
grep '^{' myjsoncontent/content/myjson.md
grep '^{' myjsoncontent/content/myyaml.md
hugo convert toYAML -o myyamlcontent
stdout 'processing 3 content files'
hugo convert toTOML -o mytomlcontent
stdout 'processing 3 content files'
-- hugo.toml --
baseURL = "http://example.org/"
-- content/mytoml.md --
+++
title = "TOML"
+++
TOML content
-- content/myjson.md --
{
"title": "JSON"
}
JSON content
-- content/myyaml.md --
---
title: YAML
---
YAML content
|