Skip to content

Commit

Permalink
create/skeletons: Add delimiters to archetype front matter
Browse files Browse the repository at this point in the history
Fixes #12945
  • Loading branch information
jmooring authored and bep committed Oct 15, 2024
1 parent 1cfe974 commit b1b3bbc
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion create/skeletons/skeletons.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func newSiteCreateArchetype(fs afero.Fs, createpath string, format string) (err
}

var buf bytes.Buffer
err = parser.InterfaceToConfig(in, metadecoders.FormatFromString(format), &buf)
err = parser.InterfaceToFrontMatter(in, metadecoders.FormatFromString(format), &buf)
if err != nil {
return err
}
Expand Down
33 changes: 33 additions & 0 deletions testscripts/commands/new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@ cd myexistingsite
hugo new post/foo.md -t mytheme
grep 'Dummy content' content/post/foo.md

cd $WORK

# In the three archetype format tests below, skip Windows testing to avoid
# newline differences when comparing to golden.

hugo new site json-site --format json
[!windows] cmp json-site/archetypes/default.md archetype-golden-json.md

hugo new site toml-site --format toml
[!windows] cmp toml-site/archetypes/default.md archetype-golden-toml.md

hugo new site yaml-site --format yaml
[!windows] cmp yaml-site/archetypes/default.md archetype-golden-yaml.md

-- myexistingsite/hugo.toml --
theme = "mytheme"
-- myexistingsite/content/p1.md --
Expand All @@ -80,3 +94,22 @@ draft: true
---

Dummy content.

-- archetype-golden-json.md --
{
"date": "{{ .Date }}",
"draft": true,
"title": "{{ replace .File.ContentBaseName \"-\" \" \" | title }}"
}
-- archetype-golden-toml.md --
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++
-- archetype-golden-yaml.md --
---
date: '{{ .Date }}'
draft: true
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
---

0 comments on commit b1b3bbc

Please sign in to comment.