-
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.
- Loading branch information
1 parent
ee13f7d
commit 3031d62
Showing
15 changed files
with
31 additions
and
82 deletions.
There are no files selected for viewing
23 changes: 12 additions & 11 deletions
23
share/mrdocs/addons/generator/asciidoc/layouts/overload-set.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,15 +1,16 @@ | ||
{{#if relfileprefix}}:relfileprefix: {{relfileprefix}}{{/if}} | ||
{{#with symbol}} | ||
[#{{#if (is_multipage)}}{{id}}{{else}}{{ref}}{{/if}}] | ||
[#{{#if (is_multipage)}}{{symbol.id}}{{else}}{{symbol.ref}}{{/if}}] | ||
|
||
== {{#if name}}Overload set {{name}}{{else}}Unnamed overload set{{/if}} | ||
== {{#if symbol.name}}Overload set {{>nested-name-specifier symbol=symbol.parent}}{{symbol.name}}{{else}}Unnamed overload set{{/if}} | ||
|
||
[,cols=2] | ||
|=== | ||
|Name |Description | ||
{{#each members}} | ||
|xref:{{ref}}[`pass:v[{{name}}]`] |{{doc.brief}} | ||
{{/each}} | ||
|=== | ||
{{#each symbol.members as | member |}} | ||
|
||
{{/with}} | ||
{{member.doc.brief}} | ||
|
||
[source,cpp,subs="verbatim,macros,-callouts"] | ||
---- | ||
{{> (concat 'signature' '/' (lookup member 'kind')) symbol=member}}; | ||
xref:{{ref}}[pass:c,q,m[*_» more..._*]] | ||
---- | ||
{{/each}} |
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/layouts/single-symbol.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,4 +1,4 @@ | ||
{{#if relfileprefix}}:relfileprefix: {{relfileprefix}}{{/if}} | ||
[#{{#if (is_multipage)}}{{symbol.id}}{{else}}{{symbol.ref}}{{/if}}] | ||
|
||
{{> (concat 'symbols' '/' (lookup . 'symbol.kind')) symbol=symbol}} | ||
{{> (concat 'symbols' '/' (lookup symbol 'kind')) symbol=symbol}} |
32 changes: 0 additions & 32 deletions
32
share/mrdocs/addons/generator/asciidoc/partials/function-decl.adoc.hbs
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
share/mrdocs/addons/generator/asciidoc/partials/nested-name-specifier.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{{#if (and symbol (or includeNamespace (ne symbol.kind "namespace")))~}} | ||
{{#if symbol.parent~}} | ||
{{>nested-name-specifier symbol=symbol.parent~}} | ||
{{else~}} | ||
{{/if~}} | ||
{{!-- {{#if symbol.name}}xref:{{symbol.ref}}[{{symbol.name}}]::{{/if~}} --}} | ||
{{#if symbol.name}}{{symbol.name}}::{{/if~}} | ||
{{/if}} |
20 changes: 0 additions & 20 deletions
20
share/mrdocs/addons/generator/asciidoc/partials/record-decl.adoc.hbs
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
share/mrdocs/addons/generator/asciidoc/partials/signature/friend.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/enum.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/enumerator.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/field.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/function.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/namespace.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/record.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/typedef.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
2 changes: 1 addition & 1 deletion
2
share/mrdocs/addons/generator/asciidoc/partials/symbols/variable.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
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