2017-03-30 15:17:08 +03:00
|
|
|
<div class="operations">
|
2016-12-23 01:43:19 +03:00
|
|
|
<div class="tag" *ngFor="let tag of tags; trackBy:trackByTagName" [attr.section]="tag.id">
|
|
|
|
<div class="tag-info" *ngIf="tag.name">
|
2017-04-18 16:42:59 +03:00
|
|
|
<h1 class="sharable-header"> <a class="share-link" href="#{{tag.anchor}}"></a>{{tag.name}} </h1>
|
2016-06-22 12:45:03 +03:00
|
|
|
<p *ngIf="tag.description" [innerHtml]="tag.description | marked"> </p>
|
2017-02-03 00:08:04 +03:00
|
|
|
<redoc-externalDocs [docs]="tag.metadata.externalDocs"></redoc-externalDocs>
|
2015-10-29 00:37:16 +03:00
|
|
|
</div>
|
2017-03-30 15:17:08 +03:00
|
|
|
<operation *lazyFor="let operation of tag.items; let ready = ready;"
|
|
|
|
[hidden]="!ready" [pointer]="operation.metadata.pointer"
|
|
|
|
[parentTagId]="tag.id" [attr.section]="operation.id"></operation>
|
2015-12-14 18:20:40 +03:00
|
|
|
</div>
|
2015-10-08 23:21:51 +03:00
|
|
|
</div>
|