Skip to content

Usage Guide

This section covers the basic usage of My Product.

Starting the Application

To start the application, run the following command in your terminal:

bash
my-product start

Creating a New Project

  1. Click on the New Project button in the dashboard.
  2. Enter a name for your project.
  3. Select a template (optional).
  4. Click Create.

Exporting Data

You can export your data to various formats, including CSV, JSON, and PDF.

  1. Go to Settings.
  2. Select Export Data.
  3. Choose your desired format.
  4. Click Download.

Advanced Features

Mathematical Formulas

You can use LaTeX to render mathematical formulas:

Diagrams

We also support Mermaid diagrams:

Tables

You can create tables using standard Markdown syntax:

FeatureFree PlanPro PlanEnterprise
Users15Unlimited
Storage1 GB10 GBUnlimited
SupportCommunityEmail24/7 Phone
Custom Domain
SLA99.9%99.99%

Code Blocks

VitePress uses Shiki to highlight code blocks.

JavaScript:

javascript
function hello(name) {
  console.log(`Hello, ${name}!`);
}
hello('World');

Python:

python
def fibonacci(n):
    if n <= 1:
        return n
    else:
        return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))