profectus-docs/profectus-theme/resources/partials/member.sources.hbs

55 lines
484 B
Handlebars
Raw Normal View History

2023-04-12 18:41:44 -05:00
{{#if implementationOf}}
#### Implementation of
{{#with implementationOf}}
{{typeAndParent}}
{{/with}}
{{/if}}
{{#if inheritedFrom}}
#### Inherited from
{{#with inheritedFrom}}
{{{typeAndParent}}}
{{/with}}
{{/if}}
{{#if overwrites}}
#### Overrides
{{#with overwrites}}
{{typeAndParent}}
{{/with}}
{{/if}}
{{#if sources}}
#### Defined in
{{#each sources}}
{{#if url}}
[{{fileName}}:{{line}}]({{url}})
{{else}}
{{fileName}}:{{line}}
{{/if}}
{{/each}}
{{/if}}