Skip to content

Commit

Permalink
chore: Asciidoc and HTML Template Synchronization
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni authored and alandefreitas committed Jun 24, 2024
1 parent f19eb95 commit c8b9e8f
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.

This file was deleted.

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}}
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}}

0 comments on commit c8b9e8f

Please sign in to comment.