redoc/lib/components/MethodsList/methods-list.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>