fix: Correct placeholder spacing in templates

This commit is contained in:
Matteo Cherubini 2026-06-09 12:19:31 +02:00
parent 6eabff23a6
commit afe7a7c815
3 changed files with 6 additions and 6 deletions

View file

@ -146,7 +146,7 @@ Required on every wiki page:
--- ---
title: "Strict String Title" title: "Strict String Title"
type: source | entity | concept | query | conflict | private type: source | entity | concept | query | conflict | private
domain: { { GENOME_NAME } } domain: {{ GENOME_NAME }}
tags: [lowercase, hyphen-separated] tags: [lowercase, hyphen-separated]
maturity: draft | stable | deprecated maturity: draft | stable | deprecated
last_updated: YYYY-MM-DD last_updated: YYYY-MM-DD
@ -205,7 +205,7 @@ When new evidence contradicts an existing wiki claim:
--- ---
title: "Conflict: <concept>" title: "Conflict: <concept>"
type: conflict type: conflict
domain: { { GENOME_NAME } } domain: {{ GENOME_NAME }}
maturity: draft maturity: draft
last_updated: YYYY-MM-DD last_updated: YYYY-MM-DD
private: false private: false

View file

@ -1,9 +1,9 @@
--- ---
title: "Index — {{GENOME_NAME}}" title: "Index — {{GENOME_NAME}}"
type: index type: index
domain: { { GENOME_NAME } } domain: {{ GENOME_NAME }}
maturity: stable maturity: stable
last_updated: { { DATE } } last_updated: {{ DATE }}
private: false private: false
--- ---

View file

@ -1,9 +1,9 @@
--- ---
title: "Operations Log — {{GENOME_NAME}}" title: "Operations Log — {{GENOME_NAME}}"
type: log type: log
domain: { { GENOME_NAME } } domain: {{ GENOME_NAME }}
maturity: stable maturity: stable
last_updated: { { DATE } } last_updated: {{ DATE }}
private: false private: false
--- ---