中文/English
Marktion is a WYSIWYG Markdown editor based on tiptap. It provides an intuitive way to edit and preview Markdown text, making it easier for users to create visually appealing documents.
See our website marktion.io in action.
- WYSIWYG Editing: Real-time preview of Markdown rendering for a more intuitive editing experience.
- Slash Menu & Bubble Menu: Access commonly used formatting options and commands using a slash command menu, inspired by Notion's editor.
- Dark Mode Support: Enable Dark Mode to provide a visually comfortable editing experience in low-light environments.
- Install dependencies.
npm intall marktion
- Usage
import { Marktion } from 'marktion';
import 'marktion/dist/style.css';
function Editor() {
return <Marktion darkMode={isDarkMode} markdown={`# Hello World`} />;
}
- Example
Have a look at the examples to see marktion.io in action.
Property | Description | Type | Default |
---|---|---|---|
markdown | The initial Markdown content for the editor. | string | - |
darkmode | Enable or disable Dark Mode in the editor. | boolean | false |
onUploadImage | Callback function for uploading images. | (file: File, editor: Editor) => Promise<url> |
- |
Consult tiptap's documentation to find more APIs.
Property | Description | Type | Default |
---|---|---|---|
getMarkdown | A callback function that returns the current Markdown content of the editor. | () => string |
- |
editor | tiptap editor instance, read more. | Editor | - |
Example usage:
import { MarktionRef, Marktion } from 'marktion';
function App() {
const marktionRef = useRef<MarktionRef>(null);
const onExport = () => {
const content = marktionRef.current?.getMarkdown();
console.log(content);
};
return (
<>
<button onClick={onExport}>export</button>
<Marktion ref={marktionRef} />
</>
);
}
Thank you for considering contributing to Marktion! If you would like to contribute, please follow these steps:
-
Fork the repository to your GitHub account.
-
Clone the forked repository to your local machine.
git clone https://github.com/yourusername/marktion.git
cd marktion
- Install dependencies.
pnpm i
-
Make changes and test your modifications.
-
Commit your changes.
-
Create a pull request.
Go to the original repository and click on "New Pull Request". Fill in the necessary details and describe the changes you made.
We will review your pull request as soon as possible. Thank you for your contribution!
This project is licensed under the MIT License. See the LICENSE file for more details.
If you have any questions, suggestions, or issues, feel free to reach out to us through the following channels:
- Email: whistleryz@gmail.com
- Issue Tracker: Project Issues (Please specify the issue type in the issue title)