Skip to content

A02_Quick Start

jetyu edited this page Mar 5, 2026 · 1 revision

Quick Start | 快速上手

本页面将帮助你在几分钟内快速上手 NoteWizard,完成首次笔记创建与基本操作。
This page helps you get started with NoteWizard in minutes by creating and managing your first notes.


Step 1: Launch NoteWizard | 启动应用

首次启动 NoteWizard 时,应用会进行基础初始化设置。
When launching NoteWizard for the first time, the app performs basic initialization.

  • 系统选择 笔记保存路径 ,默认路径为用户文档目录下的 NoteWizard 文件夹
  • 默认路径:文档/NoteWizard

Notes are stored in the NoteWizard folder under your Documents directory.

该路径后续可在首选项中修改。
You can change this location later in Preferences.


Step 2: Create Your First Note | 创建第一条笔记

  1. 点击左侧工具栏中的 新建笔记 按钮
    Click the New Note button in the sidebar toolbar

输入标题和内容后,笔记会 自动保存
Notes are saved automatically as you type.


Step 3: Edit with Markdown | 使用 Markdown 编辑

NoteWizard 使用 Markdown 作为主要编辑格式。
NoteWizard uses Markdown as its primary editing format.

示例:
Example:

### Markdown 语法支持

NoteWizard 支持完整的 Markdown 语法和扩展语法:

#### 基础语法

```markdown
# 一级标题
## 二级标题
### 三级标题

**粗体文本**
*斜体文本*
~~删除线~~

- 无序列表项 1
- 无序列表项 2

1. 有序列表项 1
2. 有序列表项 2

[链接文本](https://example.com)
![图片描述](图片URL)

> 引用文本

`行内代码`

​```javascript
// 代码块
function hello() {
  console.log("Hello, NoteWizard!");
}
​```

表格

| 列1 | 列2 | 列3 |
|-----|-----|-----|
| 数据1 | 数据2 | 数据3 |
| 数据4 | 数据5 | 数据6 |

任务列表

- [x] 已完成的任务
- [ ] 未完成的任务
- [ ] 另一个任务

Clone this wiki locally