Conor Neilson
Conor Neilson

Reputation: 1091

blogdown not inserting archetype when selected

I have a website setup using hugo and blogdown. I have an archetype setup called post.md, located at /themes/silhouette-hugo/archetypes/post.md, that looks like this:

---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
categories:
  - Software Development
tags:
  - Untagged
featureImage: images/nelson_lakes_photo.jpg
---

""`<!--more-->`""

I went through the New Post addin in RStudio: enter image description here

However the markdown file I got didn't include the archetype style

---
title: test
author: Conor Neilson
date: '2021-08-22'
slug: []
categories: []
tags: []
---

This used to work fine, it's only stopped working in the last few months.

Hugo version is 0.87.0, blogdown version 1.4.3.

Source code for my website is here

Upvotes: 1

Views: 76

Answers (1)

Yihui Xie
Yihui Xie

Reputation: 30184

I just fixed this bug in blogdown. You may try the dev version:

remotes::install_github('rstudio/blogdown')

(Remember to restart R)

Upvotes: 1

Related Questions