-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: tranche partial requires no whitespace
- Loading branch information
1 parent
7c1f0ea
commit 7d689c9
Showing
2 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
share/mrdocs/addons/generator/asciidoc/partials/tranche.adoc.hbs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{{#if tranche.records}} | ||
=={{label}} Types | ||
== {{label}} Types | ||
{{>info-list tranche.records}} | ||
{{/if}} | ||
{{#if tranche.types}} | ||
{{#if label}} | ||
=={{label}} Types | ||
== {{label}} Types | ||
{{else}} | ||
== Types | ||
== Types | ||
{{/if}} | ||
{{>info-list tranche.types}} | ||
{{/if}} | ||
{{#if tranche.functions}} | ||
=={{label}} Member Functions | ||
== {{label}} Member Functions | ||
{{>info-list tranche.functions}} | ||
{{/if}} | ||
{{#if tranche.enums}} | ||
=={{label}} Enums | ||
== {{label}} Enums | ||
{{>info-list tranche.enums}} | ||
{{/if}} | ||
{{#if tranche.fields}} | ||
=={{label}} Data Members | ||
== {{label}} Data Members | ||
{{>info-list tranche.fields}} | ||
{{/if}} | ||
{{#if tranche.staticfunctions}} | ||
=={{label}} Static Member Functions | ||
== {{label}} Static Member Functions | ||
{{>info-list tranche.staticfunctions}} | ||
{{/if}} | ||
{{#if tranche.staticdata}} | ||
=={{label}} Static Data Members | ||
== {{label}} Static Data Members | ||
{{>info-list tranche.staticdata}} | ||
{{/if}} | ||
{{#if tranche.friends}} | ||
=={{label}} Friends | ||
== {{label}} Friends | ||
{{>info-list tranche.friends}} | ||
{{/if}} |