Apidog Markdown
  1. Components
Apidog Markdown
  • Welcome to Apidog Markdown
  • Basic Syntax and Features
    • Title and Text
    • Lists & Tables
    • Image
    • Video
    • Code
    • Icon
    • Tailwind CSS Supports
  • Components
    • Admonition
    • Hightlight
    • Accordion
    • AccordionGroup
    • Multiple Columns
    • Card
    • Card Group
    • Image Frame
    • Step
    • Tab
    • Tip
    • Copy to Clipboard
    • Text Hover Tip
    • Text Drawing - Mermaid
      • Graph
      • Sequence Diagram
      • Class Digram
      • State Diagram
      • Entity Relationship Diagram
      • Journey Map
      • Gantt Chart
      • Pie Chart
    • Formula
      • Inline Formula
      • Block-level Formula
  • Other Questions
    • Shortcuts
  1. Components

Step

Use the Step component to represent a series of steps or processes.

Example#

With Step Titles#

1
First Step
This is the content of the first step
2
Second Step
This is the content of the second step
3
Third Step
This is the content of the third step
Code:
<Steps>
    <Step title="First Step">
        This is the content of the first step
    </Step>
    <Step title="Second Step">
        This is the content of the second step
    </Step>
    <Step title="Third Step">
        This is the content of the third step
    </Step>
</Steps>
You can refer to the example to add any number of steps. The code within the steps follows Markdown syntax.

Without Step Titles#

1
This is the content of the first step
2
This is the content of the second step
3
This is the content of the third step
Code:
<Steps>
    <Step title="">
        This is the content of the first step
    </Step>
    <Step title="">
        This is the content of the second step
    </Step>
    <Step title="">
        This is the content of the third step
    </Step>
</Steps>
You can refer to the example to add any number of steps. The code within the steps follows Markdown syntax.

Custom Icons#

The default icons are Arabic numerals. Icons can be set according to the requirements.
First Step
This is the content of the first step
Second Step
This is the content of the second step
Third Step
This is the content of the third step
Code:
<Steps>
    <Step title="First Step" icon="remix-progress-2-fill">
        This is the content of the first step
    </Step>
    <Step title="Second Step" icon="remix-progress-4-fill">
        This is the content of the second step
    </Step>
    <Step title="Third Step" icon="remix-progress-6-fill">
        This is the content of the third step
    </Step>
</Steps>

Parameter Description#

Step
title
string 
Title
required
Define step title
icon
string 
Icon
optional
Define icon. For methods, refer to icon
Previous
Image Frame
Next
Tab
Built with