zigholding_obsidian-notesyn.../README.md
2025-06-05 21:48:15 +08:00

141 lines
4.8 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

### 导出笔记/Export Notes
同步文件或文件夹:
To sync a file or folder:
1. 在文件列表中,右键点击文件或文件夹;
Right-click the file or folder in the file list;
2. 点击 `mirror to other vault`
Click `mirror to other vault`;
3. 输入目标库根目录;
Enter the root directory of the target vault;
4. 笔记、文件夹以及笔记嵌入的附件,会按相同的文件结构复制到目标库。如果目录库中存在同名文件,则根据更新时间判定是否覆盖;
Notes, folders, and embedded attachments will be copied to the target vault with the same structure. If a file with the same name exists, it will be overwritten only if the source is newer.
### 导出插件/Export Plugins
1. 执行命令 `Note Sync: export plugin`
Run the command `Note Sync: export plugin`;
2. 选择要导出的插件;
Select the plugin you want to export;
3. 选择是否导出 `data.json`
Choose whether to export `data.json`;
4. 输入插件保存目录;
Enter the directory where the plugin will be saved;
5. 输入回车键确认;
Press Enter to confirm.
### 将笔记导出为 readMe / Export a Note as `readMe`
执行 `Note Sync:Set config to export note`,设置导出信息:
Run `Note Sync:Set config to export note` to configure the export settings:
- `Dir`:导出路径
`Dir`: Export directory
- `Name`:文件名称,默认为 readMe
`Name`: File name (default: readMe)
- `Assets`:附件存放路径
`Assets`: Path to save attachments
- `RemoveMeta`:是否移除元数据,默认为 true
`RemoveMeta`: Whether to remove metadata (default: true)
- `UseGitLink`:附件链接使用 Git 格式,默认 true
`UseGitLink`: Use Git-style links for attachments (default: true)
> [!NOTE]+ 文件导出配置示例
> [!NOTE]+ Example Export Configuration
>
> ```yaml
> note-sync:
> Dir: D:\github\ObsidianZ-dev\.obsidian\plugins\note-sync
> Name: readMe_中文
> Assets: ./assets
> RemoveMeta: true
> UseGitLink: true
> ```
然后执行 `Note Sync:Export current note` 导出当前笔记。
Then run `Note Sync:Export current note` to export the current note.
---
### 下载示例库文件/Download Example Vault Files
`设置` 页面配置 `Git 仓库`,需要包含分支名称:
Configure the `Git repository` in the **Settings** page. The URL must include the branch name:
> [https://github.com/zigholding/ObsidianZ/tree/master](https://github.com/zigholding/ObsidianZ/tree/master)
> [https://gitee.com/zigholding/ObsidianZ/tree/master](https://gitee.com/zigholding/ObsidianZ/tree/master)
执行 `下载 Git 仓库文件` 命令,依次选择仓库、文件夹和文件进行下载。输入 `all` 可下载所有文件(不包括子文件夹)。
Run `Download git repo`, select the repository, then choose folders and files to download. Enter `all` to download all top-level files (excluding subfolders).
![](././assets/下载笔记.gif)
下载文件时,也可以预设路径,快速下载:
You can also preset the path for quick download when fetching files:
> [https://github.com/zigholding/ObsidianZ/tree/master/.obsidian/plugins](https://github.com/zigholding/ObsidianZ/tree/master/.obsidian/plugins)
### 设置页/Settings Page
![](././assets/Pasted image 20241215125538.png)
> [!NOTE]+ Root dir of vault
> 导出插件或同步文件时,选择预设的目标库。多个库请用换行符分隔。
> Set predefined vaults for export/sync. Use newlines to separate multiple vaults.
> [!Danger]+ Strict mode
> 启用严格模式,在目标文件夹中删除源文件夹中不存在的笔记或附件。请谨慎操作,此设置会**删除文件**。
> Enabling strict mode will delete notes or attachments in the target folder that are not present in the source. **Use with caution**—this option will delete files.
### 函数/Functions
`NoteSync` 提供了两个个函数用于同步文件和文件夹,可用于脚本笔记中。
`NoteSync` provides two functions to sync files and folders, which can be used in your script notes.
参数 `mode` 用于指定当目标库中已有文件时的处理方式:
The `mode` parameter determines how to handle existing files in the target vault:
- `pass`:跳过
`pass`: Skip
- `overwrite`:覆盖
`overwrite`: Overwrite
- `mtime`:根据更新时间覆盖
`mtime`: Overwrite if the source is newer
```js
let ns = app.plugins.plugins['note-sync']
// 同步系统文件夹
// Sync system folder
ns.fsEditor.sync_folder(
src:string,
dst:string,
mode='mtime',
strict=false
)
// 同步 Obsidian 笔记文件夹
// Sync Obsidian TFolder
ns.fsEditor.sync_tfolder(
tfolder:TFolder,
vault_root:string,
mode='mtime',
attachment=true,
outlink=false,
strict=false
)
```