mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 17:13:44 +03:00
12 lines
576 B
HTML
12 lines
576 B
HTML
<div class="methods">
|
|
<div class="tag" *ngFor="let tag of tags; trackBy:trackByTagName" [attr.section]="tag.id">
|
|
<div class="tag-info" *ngIf="tag.name">
|
|
<h1 class="sharable-header"> <a class="share-link" href="#{{tag.id}}"></a>{{tag.name}} </h1>
|
|
<p *ngIf="tag.description" [innerHtml]="tag.description | marked"> </p>
|
|
</div>
|
|
<method *lazyFor="let method of tag.items; let show = show;" [hidden]="!show"
|
|
[pointer]="method.metadata.pointer" [attr.section]="method.id"
|
|
[attr.operation-id]="method.metadata.operationId"></method>
|
|
</div>
|
|
</div>
|