Syntax Referente Example Page

Below you will find examples of all the formats you can use in your Markdown documentation

References
2024-10-03

Below you will find examples of all the formats you can use in your Markdown documentation

Example Endpoint Docs

Example endpoint title

Example endpoint description

GET

STABLE
https://example.com/end/point/resource
<Endpoint
  method="GET"
  title="Example endpoint title"
  description="Example endpoint description"
  label="STABLE"
>
  // Your markdown code here
</Endpoint>

Example Alert Docs

  • Usage:
<Alert type="warning">Example message</Alert>
  • type properties:
export type AlertType = "success" | "error" | "warning" | "info";

Other Markdown utils

Example table

Column 1Column 2Column 3
Row 1, Cell 1Row 1, Cell 2Row 1, Cell 3
Row 2, Cell 1Row 2, Cell 2Row 2, Cell 3
Row 3, Cell 1Row 3, Cell 2Row 3, Cell 3

Heading

Use # to define different levels of headings (from h1 to h4).

## Heading Level 1

### Heading Level 2

#### Heading Level 3

Bold Italic Strikethrough

**Bold**
_Italic_
~~Strikethrough~~

Lists

  1. First item
  2. Second item
    1. Sub-item 2.1
    2. Sub-item 2.2
  3. Third item
1.  First item
2.  Second item
    1. Sub-item 2.1
    2. Sub-item 2.2
3.  Third item