-
Notifications
You must be signed in to change notification settings - Fork 1
A02_Quick Start
jetyu edited this page Mar 5, 2026
·
1 revision
本页面将帮助你在几分钟内快速上手 NoteWizard,完成首次笔记创建与基本操作。
This page helps you get started with NoteWizard in minutes by creating and managing your first notes.
首次启动 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.
- 点击左侧工具栏中的 新建笔记 按钮
Click the New Note button in the sidebar toolbar
输入标题和内容后,笔记会 自动保存。
Notes are saved automatically as you type.
NoteWizard 使用 Markdown 作为主要编辑格式。
NoteWizard uses Markdown as its primary editing format.
示例:
Example:
### Markdown 语法支持
NoteWizard 支持完整的 Markdown 语法和扩展语法:
#### 基础语法
```markdown
# 一级标题
## 二级标题
### 三级标题
**粗体文本**
*斜体文本*
~~删除线~~
- 无序列表项 1
- 无序列表项 2
1. 有序列表项 1
2. 有序列表项 2
[链接文本](https://example.com)

> 引用文本
`行内代码`
```javascript
// 代码块
function hello() {
console.log("Hello, NoteWizard!");
}
```| 列1 | 列2 | 列3 |
|-----|-----|-----|
| 数据1 | 数据2 | 数据3 |
| 数据4 | 数据5 | 数据6 |- [x] 已完成的任务
- [ ] 未完成的任务
- [ ] 另一个任务© 2026 NoteWizard Team. All rights reserved.
NoteWizard App is released under the MIT License.
This documentation is part of the NoteWizard project and is maintained by the NoteWizard team.