# mdx-notes **Repository Path**: cix/mdx-notes ## Basic Information - **Project Name**: mdx-notes - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: tauri-app - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-02 - **Last Updated**: 2026-06-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

English | 简体中文

MDX Notes

> A versatile WeChat typesetting editor, also serving as a cross-platform Markdown note-taking software. ## Inspiration Markdown, beloved by countless programmers as a writing format, falls short in meeting the typesetting demands of WeChat. Fortunately, MDX comes to the rescue, mending Markdown's inadequacies. As my own blog utilizes MDX for writing, I pondered upon the possibility of achieving a unified solution for writing and typesetting when I stumbled upon the [mdxjs playground](https://mdxjs.com/playground/). ## Features ### Web Version - Seamlessly copy to WeChat Official Accounts with just a click - Customize styled components and styles, generate QR codes and code diff highlights - Generate article indexes effortlessly - Create WeChat footnotes with ease - Automatically convert WeChat external links into `span` elements - Ensure code formatting precision - Facilitate article sharing with built-in functionality - Download markdown files effortlessly - Export to PDF seamlessly ### Desktop Version In addition to the web version's features, the desktop version includes: - Real-time local file saving - Efficient management of local file directories - Hassle-free HTML export functionality ## Template Examples
Subtle Green Card Early Summer Style
Resume Template Exquisite Code Diff Highlights
Generate Captivating QR Codes Travel Itinerary
## Development To access the web version, switch to the `main` branch and follow these commands: ```bash yarn yarn dev ``` For the desktop version, switch to the `tauri-app` branch and execute the following commands: ```bash yarn yarn tauri dev ``` ## FAQ ### 1. After installing on macOS, it shows "The file is damaged" or there is no response when opening it Because MDX Notes is not signed, it is blocked by macOS security checks. If you encounter the "The file is damaged" error after installation, follow these steps: Trust the developer, and it will prompt you to enter your password: ```bash sudo spctl --master-disable ``` Then allow MDX Notes: ```bash xattr -cr /Applications/MDX\ Notes.app ``` After that, you should be able to open it normally. If you see the following message: ```sh 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 ``` Execute the command: ```bash xattr -c /Applications/MDX\ Notes.app/* ``` If the above command still doesn't work, you can try the following command: ```bash sudo xattr -d com.apple.quarantine /Applications/MDX\ Notes.app/ ``` ## Deployment Deployed using the [Vercel Platform](https://vercel.com/import?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. ## References - [mdxjs playground](https://mdxjs.com/playground/) - [play.tailwindcss.com](https://play.tailwindcss.com/)