2015-10-21 14:07:22 +03:00
|
|
|
<div class="methods">
|
2016-07-20 11:07:08 +03:00
|
|
|
<div class="tag" *ngFor="let tag of tags;trackBy:trackByTagName">
|
2016-07-26 12:03:15 +03:00
|
|
|
<div class="tag-info" [attr.section]="tag.id" *ngIf="!tag.virtual">
|
|
|
|
<h1 class="sharable-header"> <a class="share-link" href="#tag/{{tag.name | encodeURIComponent}}"></a>{{tag.name}} </h1>
|
2016-06-22 12:45:03 +03:00
|
|
|
<p *ngIf="tag.description" [innerHtml]="tag.description | marked"> </p>
|
2015-10-29 00:37:16 +03:00
|
|
|
</div>
|
2016-06-30 16:42:36 +03:00
|
|
|
<method *ngFor="let method of tag.methods;trackBy:trackByPointer" [pointer]="method.pointer" [attr.pointer]="method.pointer"
|
2016-07-21 13:35:27 +03:00
|
|
|
[attr.section]="method.tag" [tag]="method.tag" [attr.operation-id]="method.operationId"></method>
|
2015-12-14 18:20:40 +03:00
|
|
|
</div>
|
2015-10-08 23:21:51 +03:00
|
|
|
</div>
|