-
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.
chore: Asciidoc and HTML Template Synchronization
- Loading branch information
1 parent
f19eb95
commit c8b9e8f
Showing
3 changed files
with
22 additions
and
9 deletions.
There are no files selected for viewing
9 changes: 0 additions & 9 deletions
9
share/mrdocs/addons/generator/html/partials/namespace.html.hbs
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
share/mrdocs/addons/generator/html/partials/qualified-path.html.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{{#unless (or (contains @root.symbol.namespace symbol) (eq @root.symbol symbol))~}} | ||
{{#if symbol.parent~}} | ||
{{>qualified-path symbol=symbol.parent nolink=nolink~}} | ||
{{else~}} | ||
{{/if~}} | ||
{{#if symbol.name}} | ||
{{#if (not nolink)}} | ||
<a href="#{{symbol.ref}}">{{symbol.name}}</a> | ||
{{else}} | ||
{{symbol.name}} | ||
{{/if}}:: | ||
{{/if~}} | ||
{{/unless}} |
9 changes: 9 additions & 0 deletions
9
share/mrdocs/addons/generator/html/partials/special-name-suffix.html.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{{#if (eq kind "overload")}} | ||
{{>special-name-suffix (front members)~}} | ||
{{else if (eq kind "function")~}} | ||
{{#if (eq class "constructor")}} | ||
<span class="small">[constructor]</span> | ||
{{~else if (eq class "destructor")~}} | ||
<span class="small">[destructor]</span> | ||
{{~/if~}} | ||
{{/if}} |