Skip to content

Commit d6aa383

Browse files
committed
Fix global parameters path
1 parent 8d51c5f commit d6aa383

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

themes/markdown/partials/header.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% import 'include/macros.twig' as macros %}
2-
{% if includeTitle != 'no' %}
2+
{% if parameter.includeTitle == 'yes' %}
33
# {{ (node.name ~ titleSuffix | default('')) | raw }}
44
{% endif %}
55
{% if node.summary | trim %}

themes/markdown/partials/toc.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{# GitLab supports automatic table of contents generation #}
2-
{% if markdownFlavour == 'gitlab' %}
2+
{% if parameter.markdownFlavour == 'gitlab' %}
33

44
## Table of contents
55

0 commit comments

Comments
 (0)