defer f.Close()
if archetypeFilename == "" {
- return b.cf.AppplyArchetypeTemplate(f, p, b.kind, DefaultArchetypeTemplateTemplate)
+ return b.cf.ApplyArchetypeTemplate(f, p, b.kind, DefaultArchetypeTemplateTemplate)
}
- return b.cf.AppplyArchetypeFilename(f, p, b.kind, archetypeFilename)
+ return b.cf.ApplyArchetypeFilename(f, p, b.kind, archetypeFilename)
}
// We parse the archetype templates as Go templates, so we need
// to replace any shortcode with a temporary placeholder.
- shortocdeReplacerPre *strings.Replacer
- shortocdeReplacerPost *strings.Replacer
+ shortcodeReplacerPre *strings.Replacer
+ shortcodeReplacerPost *strings.Replacer
}
-// AppplyArchetypeFilename archetypeFilename to w as a template using the given Page p as the foundation for the data context.
-func (f ContentFactory) AppplyArchetypeFilename(w io.Writer, p page.Page, archetypeKind, archetypeFilename string) error {
+// ApplyArchetypeFilename archetypeFilename to w as a template using the given Page p as the foundation for the data context.
+func (f ContentFactory) ApplyArchetypeFilename(w io.Writer, p page.Page, archetypeKind, archetypeFilename string) error {
fi, err := f.h.SourceFilesystems.Archetypes.Fs.Stat(archetypeFilename)
if err != nil {
}
- return f.AppplyArchetypeTemplate(w, p, archetypeKind, string(templateSource))
+ return f.ApplyArchetypeTemplate(w, p, archetypeKind, string(templateSource))
}
-// AppplyArchetypeFilename templateSource to w as a template using the given Page p as the foundation for the data context.
-func (f ContentFactory) AppplyArchetypeTemplate(w io.Writer, p page.Page, archetypeKind, templateSource string) error {
+// ApplyArchetypeTemplate templateSource to w as a template using the given Page p as the foundation for the data context.
+func (f ContentFactory) ApplyArchetypeTemplate(w io.Writer, p page.Page, archetypeKind, templateSource string) error {
ps := p.(*pageState)
if archetypeKind == "" {
archetypeKind = p.Type()
File: p.File(),
}
- templateSource = f.shortocdeReplacerPre.Replace(templateSource)
+ templateSource = f.shortcodeReplacerPre.Replace(templateSource)
templ, err := ps.s.TextTmpl().Parse("archetype.md", string(templateSource))
if err != nil {
return errors.Wrapf(err, "failed to execute archetype template: %s", err)
}
- _, err = io.WriteString(w, f.shortocdeReplacerPost.Replace(result))
+ _, err = io.WriteString(w, f.shortcodeReplacerPost.Replace(result))
return err
return "", err
}
- // This will be overwritten later, just write a placholder to get
+ // This will be overwritten later, just write a placeholder to get
// the paths correct.
placeholder := `---
title: "Content Placeholder"
func NewContentFactory(h *HugoSites) ContentFactory {
return ContentFactory{
h: h,
- shortocdeReplacerPre: strings.NewReplacer(
+ shortcodeReplacerPre: strings.NewReplacer(
"{{<", "{x{<",
"{{%", "{x{%",
">}}", ">}x}",
"%}}", "%}x}"),
- shortocdeReplacerPost: strings.NewReplacer(
+ shortcodeReplacerPost: strings.NewReplacer(
"{x{<", "{{<",
"{x{%", "{{%",
">}x}", ">}}",