Skip to content

InfraBlockchainTeam/ref_tag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 

Repository files navigation

description
description(opt)

Tags

태그 문법 : "{% 태그명 %} 내용 {% end태그명 %}"

Tab

{% tabs %}

{% tab title="tab1" %} tab1 content {% endtab %}

{% tab title="tab2" %} tab2 content {% endtab %}

{% endtabs %}

{% tabs %} {% tab title="tab1" %} tab1 content {% endtab %}

{% tab title="tab2" %} tab2 content {% endtab %} {% endtabs %}

Hint

{% hint style="info" %} hint text {% endhint %}

{% hint style="info" %} hint text {% endhint %}

Card

<table data-view="cards">
  <thead> <tr> <th></th> <th></th> <th></th> </tr> </thead>
  <tbody>
    <tr> <td></td> <td>Card1</td> <td></td> </tr>
    <tr> <td></td> <td>Card2</td> <td></td> </tr>
    <tr> <td></td> <td>Card3</td> <td></td> </tr>
  </tbody>
</table>
Card1
Card2
Card3

Expended

<details>
  <summary>title</summary>
  content
</details>
title

content

API(Swagger)

{% swagger method="get" path="" baseUrl="https://test.com" summary="summary" %}

{% swagger-description %} description(opt) {% endswagger-description %}

{% swagger-parameter in="path" name="path_param" type="string" required="false" %} desc. {% endswagger-parameter %}

{% swagger-parameter in="query" name="query_parma" required="false" %} desc. {% endswagger-parameter %}

{% swagger-response status="200: OK" description="desc" %}

{

    // Response body
    
}

{% endswagger-response %}

{% endswagger %}

{% swagger method="get" path="" baseUrl="https://test.com" summary="summary" %} {% swagger-description %} description(opt) {% endswagger-description %}

{% swagger-parameter in="path" name="path_param" type="string" required="false" %} desc. {% endswagger-parameter %}

{% swagger-parameter in="query" name="query_parma" required="false" %} desc. {% endswagger-parameter %}

{% swagger-response status="200: OK" description="desc" %}

{
    // Response body
}

{% endswagger-response %} {% endswagger %}

Math

$$ 
  f(x) = x * e^{2 pi i \xi x} 
$$

$$f(x) = x * e^{2 pi i \xi x}$$

Mermaid

```mermaid
sequenceDiagram

a->>b:test
b--)a: reqponse
```
sequenceDiagram

a->>b:test
b--)a: reqponse
Loading