getzola / hyde

Port of https://github.com/poole/hyde to Zola
MIT License
76 stars 51 forks source link

content folder still uses the old name Gutenberg #15

Closed wahn closed 5 years ago

wahn commented 5 years ago

Use rg (or just good old grep) reveals that the content folder still has Gutenberg in it's title(s):

> rg -tmd Gutenberg
content/some-article.md
2:title = "What is Gutenberg"

content/some-other-article.md
2:title = "A first theme for Gutenberg"
> grep Gutenberg content/*.md
content/some-article.md:title = "What is Gutenberg"
content/some-other-article.md:title = "A first theme for Gutenberg"

Not a big deal, but maybe something you want to change ...

Keats commented 5 years ago

Thanks!