func BenchmarkFrontmatterTags(b *testing.B) {
- for _, frontmatter := range []string{"JSON", "YAML", "TOML"} {
- for i := 1; i < 30; i += 10 {
+ for _, frontmatter := range []string{"JSON", "YAML", "YAML2", "TOML"} {
+ for i := 1; i < 60; i += 20 {
doBenchmarkFrontmatter(b, frontmatter, i)
}
}
tags:
%s
---
+`
+
+ yaml2Template := `---
+name: "Tags"
+tags: %s
+---
`
tomlTemplate := `+++
name = "Tags"
} else if fileformat == "JSON" {
frontmatterTemplate = jsonTemplate
tagsStr = strings.Replace(fmt.Sprintf("%q", tags), " ", ", ", -1)
+ } else if fileformat == "YAML2" {
+ frontmatterTemplate = yaml2Template
+ tagsStr = strings.Replace(fmt.Sprintf("%q", tags), " ", ", ", -1)
} else {
frontmatterTemplate = yamlTemplate
for _, tag := range tags {