mirror of
https://github.com/mempool/mempool.git
synced 2025-03-01 01:00:00 +01:00
39 lines
2.1 KiB
HTML
39 lines
2.1 KiB
HTML
<div class="code" dir="ltr" style="text-align: left !important;">
|
|
<ul ngbNav #navCodeTemplate="ngbNav" class="nav-tabs code-tab">
|
|
<li ngbNavItem *ngIf="code.codeTemplate.curl && method !== 'websocket'">
|
|
<a ngbNavLink>cURL</a>
|
|
<ng-template ngbNavContent>
|
|
<div class="subtitle"><ng-container i18n="API Docs code example">Code Example</ng-container> <app-clipboard [text]="wrapCurlTemplate(code)"></app-clipboard></div>
|
|
<pre><code [innerText]="wrapCurlTemplate(code)"></code></pre>
|
|
</ng-template>
|
|
</li>
|
|
<li ngbNavItem>
|
|
<a ngbNavLink>CommonJS</a>
|
|
<ng-template ngbNavContent>
|
|
<div class="subtitle"><ng-container i18n="API Docs code example">Code Example</ng-container> <app-clipboard [text]="wrapCommonJS(code)"></app-clipboard></div>
|
|
<div class="links">
|
|
<a [href]="npmGithubLink()" target="_blank">github repository</a>
|
|
</div>
|
|
<pre><code [innerText]="wrapCommonJS(code)"></code></pre>
|
|
</ng-template>
|
|
</li>
|
|
<li ngbNavItem>
|
|
<a ngbNavLink>ES Module</a>
|
|
<ng-template ngbNavContent>
|
|
<div class="subtitle"><ng-container i18n="API Docs install lib">Install Package</ng-container> <app-clipboard [text]="wrapImportTemplate()"></app-clipboard></div>
|
|
<div class="links">
|
|
<a [href]="npmGithubLink()" target="_blank">github repository</a>
|
|
<a [href]="npmModuleLink()" target="_blank">npm package</a>
|
|
</div>
|
|
<pre><code [innerText]="wrapImportTemplate()"></code></pre>
|
|
<div class="subtitle"><ng-container i18n="API Docs code example">Code Example</ng-container> <app-clipboard [text]="wrapEsModule(code)"></app-clipboard></div>
|
|
<pre><code [innerText]="wrapEsModule(code)"></code></pre>
|
|
</ng-template>
|
|
</li>
|
|
</ul>
|
|
<div [ngbNavOutlet]="navCodeTemplate"></div>
|
|
<div *ngIf="code.codeTemplate && wrapResponse(code) !== ''" class="response">
|
|
<div class="subtitle"><ng-container i18n="API Docs API response">Response</ng-container> <app-clipboard [text]="wrapResponse(code)"></app-clipboard></div>
|
|
<pre><code [innerText]="wrapResponse(code)"></code></pre>
|
|
</div>
|
|
</div>
|