Skip to content

1.0.4 version

Compare
Choose a tag to compare
@MarkMindCkm MarkMindCkm released this 23 Sep 03:59
· 434 commits to main since this release
1da80a9

This is a big version:

Notice
You need to download the pdfjs plugin again PDFJS Plugin, it keep more functions and it support multi open


1, fix #18 , you can select pdf viewer theme in setting tab
2. fix #17
3. fix #15
4. fix #8
5. Support multi open pdf annotate
6. support add comment to annotation
7. support committing highlights and notes to PDFs ,you can find export pdf annotate menu in more menus , it will create a file in your folder,the name is ${pdf name}-annotate.pdf
8. Split PDF annotation and mindmap function
9. change in basic mode , mind map layout from tree to mind map
10. fix #2 , in rich mode

  • if save data first time , it will output this markdown
  • if it is not the first time to save data , it will only replace '${mindmap data}', so you can change md file
  • if you want to reference node , it will automatic create mind map node reference link and copy to clipboard when click node and press ctrl or command
---
mindmap-plugin: rich
---

# title
``` json
  ${mindmap data}
```


The use type of PDF annotation has changed , if you want to use annotate function, you can add yaml to markdown file:

---

annotate-target: test/test.pdf
annotate-type: pdf

---

then you can find annotate pdf menu in more menus

  1. you can select md or annos to save annotations in setting tab
  • annos is default , it is json file in fact , you can use obsidian://jump-to-pdf to reference annotate ,
    • annotations do not contaminate MD files When referenced
  • md is the recommended way
    • you can use obsidian://jump-to-pdf to reference annotate
    • or you can ![[ md#^block id]] to to reference annotate
  1. please open obsidian://jump-to-pdf protocol in setting tab

中文

这是一次大的版本更新,增强了程序的稳定性

注意:需要重新下载pdfjs插件,该插件可以支持多开pdf标注窗口,并且保留了更多的功能,下载插件后,一定要在设置页面添加 pdfjs 插件路径

1, fix #18 , 你可以在设置页面选择pdf阅读器的皮肤
2. fix #17
3. fix #15
4. fix #8
5. 支持向pdf标注添加评论
6. 支持导出时将高亮和评论添加到原来的pdf文件中,它将在您的文件夹生成一个${pdf name}-annotate.pdf 文件,你可以在其他的软件中使用
7. 在内部将pdf标注和思维导图功能已经进行拆分,实际上可以当做两个插件使用
8. 支持多开pdf 标注窗口
9. 将basic 模式下思维导图布局由tree更改为mind map
8. fix #2 , 在 rich 模式

  • 当第一次保存数据时,它将按照下面的格式生成数据
  • 当不是第一次保存数据时, 它将仅仅替换 '${mindmap data}', 所以你可以更改文件了,并且可以在其他文件引用,一定要注意不要修改json部分,否则会破坏思维导图数据
  • 注意:还有一种引用思维导图节点的方法,就是按住CTRL/CMD,点击节点,会自动生成引用链接并保存到剪贴板中,然后你可以复制到其他的md文件中
---
mindmap-plugin: rich
---

# title
``` json
  ${mindmap data}
```


使用pdf标注的方法有一些更改,你可以在md文件添加yaml以激活pdf标注功能:

---

annotate-target: test/test.pdf
annotate-type: pdf

---

然后你可以在更多菜单中发现按钮 标注pdf文件

  1. 你仍然可以在设置页面选择 markdownannos 去保存标注
  • annos 是默认的方式 , 它是 json 文件 , 你可以使用协议 obsidian://jump-to-pdf 引用标注 ,
    • 这种方式的好处是它基本上不会污染md文件
  • md 是推荐的方式
    • 你可以使用 obsidian://jump-to-pdf 引用标注
    • 或者你可以使用 ![[ md#^block id]] 引用标注
    • 这种方式好处是可以和md深度融合
    • 坏处是保存在md文件的标注,在编辑模式可读性不是很好
  1. 请在设置页面打开 obsidian://jump-to-pdf 协议支持
  2. 其他的功能保持不变
  3. 要注意annotate-target 与引用标注的路径是对应的,否则可能找不到标注

动画121