mdx notes
v1.0.3

一种多功能的微信排版编辑器,也用作跨平台标记笔记软件。
Markdown被无数程序员作为写作格式所钟爱,在满足微信的排版需求方面缺乏。幸运的是,MDX进行了营救,修补了Markdown的不足。当我自己的博客使用MDX进行写作时,我想到了在偶然发现MDXJS Playground时实现统一的写作和排版解决方案的可能性。
span元素除Web版本的功能外,桌面版本还包括:
![]() | ![]() |
| 微妙的绿卡 | 初夏风格 |
![]() | ![]() |
| 简历模板 | 精美的代码差异 |
![]() | ![]() |
| 生成迷人的QR码 | 旅行行程 |
要访问Web版本,请切换到main分支并按照以下命令:
yarn
yarn dev对于桌面版本,请切换到tauri-app分支并执行以下命令:
yarn
yarn tauri dev由于未签署MDX注释,因此它被MACOS安全检查阻止。
如果安装后遇到“文件已损坏”错误,请执行以下步骤:
相信开发人员,它将提示您输入密码:
sudo spctl --master-disable然后允许MDX注释:
xattr -cr /Applications/MDX Notes.app之后,您应该能够正常打开它。
如果您看到以下消息:
option -r not recognized
usage: xattr [-slz] file [file ...]
xattr -p [-slz] attr_name file [file ...]
xattr -w [-sz] attr_name attr_value file [file ...]
xattr -d [-s] attr_name file [file ...]
xattr -c [-s] file [file ...]
The first form lists the names of all xattrs on the given file(s).
The second form (-p) prints the value of the xattr attr_name.
The third form (-w) sets the value of the xattr attr_name to attr_value.
The fourth form (-d) deletes the xattr attr_name.
The fifth form (-c) deletes (clears) all xattrs.
options:
-h: print this help
-s: act on symbolic links themselves rather than their targets
-l: print long format (attr_name: attr_value)
-z: compress or decompress (if compressed) attribute value in zip format执行命令:
xattr -c /Applications/MDX Notes.app/ *如果以上命令仍然不起作用,则可以尝试以下命令:
sudo xattr -d com.apple.quarantine /Applications/MDX Notes.app/使用Next.js的创建者的Vercel平台部署。