2015-10-21 14:07:22 +03:00
|
|
|
<div class="methods">
|
2015-12-14 18:20:40 +03:00
|
|
|
<div class="tag" *ngFor="#tag of data.tags">
|
2015-10-30 11:26:23 +03:00
|
|
|
<div class="tag-info" [attr.tag]="tag.name">
|
2016-02-07 17:10:32 +03:00
|
|
|
<h1 class="sharable-header"> <a class="share-link" href="#tag/{{tag.name}}"></a>{{tag.name}} </h1>
|
2015-12-14 18:20:40 +03:00
|
|
|
<p *ngIf="tag.description" innerHtml="{{ tag.description | marked }}"> </p>
|
2015-10-29 00:37:16 +03:00
|
|
|
</div>
|
2015-12-14 18:20:40 +03:00
|
|
|
<method *ngFor="#method of tag.methods" [pointer]="method.pointer" [attr.pointer]="method.pointer"
|
2016-02-07 17:10:32 +03:00
|
|
|
[attr.tag]="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>
|