Skip to content

Commit

Permalink
Merge pull request #675 from golemfactory/docs/JST-603/fix-overview-n…
Browse files Browse the repository at this point in the history
…ot-being-generated

Fix overview.md not being generated properly for docs.
  • Loading branch information
grisha87 authored Nov 24, 2023
2 parents 8487362 + bd1e557 commit 29aa195
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .docs/typedoc-frontmatter-theme.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ class ModifiedHugoTheme extends HugoTheme {
return (
"---\n" +
Object.entries(yamlVars)
.map(([key, value]) => `${key}: ${value}`)
.map(([key, value]) => `${key}: "${value}"`)

.join("\n") +
"\n---\n" +
contents
Expand Down

0 comments on commit 29aa195

Please sign in to comment.