Steps

The Steps component allows you to present a sequence of actions or events clearly.

1

Step 1: Install Neko

Run the installation command in your terminal.

// Content of # would be displayed here.
// (File reading not fully integrated)
dotnet tool install -g Neko
2

Step 2: Build the project

Run Neko to build your static files.

// Content of # would be displayed here.
// (File reading not fully integrated)
neko build
3

Step 3: Profit

Your website is now generated and ready to be deployed.

Syntax

Steps are created using >>> at the start of a line, optionally followed by a step title. The content block continues until the next >>> or the end of the markdown block. Close the final step by adding a final >>> on an empty line.

// Content of # would be displayed here.
// (File reading not fully integrated)
>>> Step 1
This is the first step.
>>> Step 2
This is the second step.
>>>