mirror of
https://github.com/qiuos/linkmind.git
synced 2026-07-22 07:08:17 +00:00
Release v0.2.1
This commit is contained in:
parent
b7d04b23d8
commit
9eed995abc
9 changed files with 30 additions and 17 deletions
|
|
@ -54,6 +54,10 @@ Edit Markdown notes as interactive mind maps in Obsidian. linkmind renders headi
|
|||
2. Click the brain icon in the left ribbon, or run **"Open current note as mind map"** from the command palette.
|
||||
3. Edit nodes, restructure the tree, and export -- all changes are saved back to Markdown automatically.
|
||||
|
||||
## Screenshots
|
||||
|
||||

|
||||
|
||||
## Settings
|
||||
|
||||
| Setting | Default | Description |
|
||||
|
|
|
|||
|
|
@ -54,6 +54,10 @@
|
|||
2. 点击左侧边栏脑图图标,或在命令面板执行 **“以思维导图打开当前笔记”**。
|
||||
3. 直接编辑节点、调整结构、导出图片;所有修改都会自动写回 Markdown。
|
||||
|
||||
## 截图
|
||||
|
||||

|
||||
|
||||
## 设置项
|
||||
|
||||
| 设置项 | 默认值 | 说明 |
|
||||
|
|
|
|||
BIN
docs/5414.webp
Normal file
BIN
docs/5414.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
|
|
@ -31,7 +31,7 @@ const context = await esbuild.context({
|
|||
logLevel: "info",
|
||||
sourcemap: prod ? false : "inline",
|
||||
treeShaking: true,
|
||||
outfile: "plugin/main.js",
|
||||
outfile: "main.js",
|
||||
minify: prod
|
||||
});
|
||||
|
||||
|
|
|
|||
22
main.js
22
main.js
File diff suppressed because one or more lines are too long
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "linkmind",
|
||||
"name": "linkmind",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Edit Markdown as a clean, keyboard-friendly mind map.",
|
||||
"author": "pikaqiu",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "linkmind",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "An editor-first mind map plugin for Obsidian that syncs with plain Markdown.",
|
||||
"main": "plugin/main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -46,13 +46,13 @@
|
|||
}
|
||||
|
||||
.linkmind-node {
|
||||
width: 168px;
|
||||
width: 200px;
|
||||
padding-left: 12px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.linkmind-node.is-root {
|
||||
width: 184px;
|
||||
width: 220px;
|
||||
}
|
||||
|
||||
.linkmind-outline {
|
||||
|
|
@ -286,7 +286,7 @@
|
|||
|
||||
.linkmind-node {
|
||||
position: absolute;
|
||||
width: 180px;
|
||||
width: 220px;
|
||||
min-height: 42px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -314,7 +314,7 @@
|
|||
}
|
||||
|
||||
.linkmind-node.is-root {
|
||||
width: 200px;
|
||||
width: 240px;
|
||||
min-height: 48px;
|
||||
justify-content: center;
|
||||
border-width: 2.5px;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"0.1.0": "1.5.0",
|
||||
"0.2.0": "1.5.0"
|
||||
"0.2.0": "1.5.0",
|
||||
"0.2.1": "1.5.0"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue