Contents
😲 md-editor-v3
Markdown Editor for Vue3, developed in jsx and typescript, support different themes、beautify content by prettier.
🤖 Base
bold, underline, italic, line-through, superscript26, subscript1, inline code
, link
quote: I Have a Dream
- So even though we face the difficulties of today and tomorrow, I still have a dream.
- It is a dream deeply rooted in the American dream.
- I have a dream that one day this nation will rise up.
- Friday
- Saturday
- Sunday
🤗 Code
1<template>
2 <MdEditor v-model="text" />
3</template>
4
5<script setup>
6import { ref } from 'vue';
7import { MdEditor } from 'md-editor-v3';
8import 'md-editor-v3/lib/style.css';
9
10const text = ref('Hello Editor!');
11</script>
🖨 Text
The Old Man and the Sea served to reinvigorate Hemingway's literary reputation and prompted a reexamination of his entire body of work.
📈 Table
nickname | from |
---|---|
zhijian | ChongQing, China |
📏 Formula
Inline: $x+y^{2x}$
$$
\sqrt[3]{x}
$$
🧬 Diagram
flowchart TD
Start --> Stop
🪄 Alert
!!! note Supported Types
note、abstract、info、tip、success、question、warning、failure、danger、bug、example、quote、hint、caution、error、attention
!!!