1. ๐Ÿ˜€
  2. ๐Ÿ˜ƒ
  3. ๐Ÿ˜„
  4. ๐Ÿ˜
  5. ๐Ÿ˜†
  6. ๐Ÿ˜…
  7. ๐Ÿ˜‚
  8. ๐Ÿคฃ
  9. ๐Ÿฅฒ
  10. ๐Ÿค”
  11. ๐Ÿ˜Š
  12. ๐Ÿ˜‡
  13. ๐Ÿ™‚
  14. ๐Ÿ™ƒ
  15. ๐Ÿ˜‰
  16. ๐Ÿ˜Œ
  17. ๐Ÿ˜
  18. ๐Ÿฅฐ
  19. ๐Ÿ˜˜
  20. ๐Ÿ˜—
  21. ๐Ÿ˜™
  22. ๐Ÿ˜š
  23. ๐Ÿ˜‹
  24. ๐Ÿ˜›
  25. ๐Ÿ˜
  26. ๐Ÿ˜œ
  27. ๐Ÿคช
  28. ๐Ÿคจ
  29. ๐Ÿง
  30. ๐Ÿค“
  31. ๐Ÿ˜Ž
  32. ๐Ÿฅธ
  33. ๐Ÿคฉ
  34. ๐Ÿฅณ
  35. ๐Ÿ˜
  36. ๐Ÿ˜’
  37. ๐Ÿ˜ž
  38. ๐Ÿ˜”
  39. ๐Ÿ˜Ÿ
  40. ๐Ÿ˜•
  41. ๐Ÿ™
  42. ๐Ÿ‘ป
  43. ๐Ÿ˜ฃ
  44. ๐Ÿ˜–
  45. ๐Ÿ˜ซ
  46. ๐Ÿ˜ฉ
  47. ๐Ÿฅบ
  48. ๐Ÿ˜ข
  49. ๐Ÿ˜ญ
  50. ๐Ÿ˜ค
  51. ๐Ÿ˜ 
  52. ๐Ÿ˜ก
  53. ๐Ÿคฌ
  54. ๐Ÿคฏ
  55. ๐Ÿ˜ณ

๐Ÿ˜ฒ md-editor-rt

Markdown Editor for React, 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

  1. So even though we face the difficulties of today and tomorrow, I still have a dream.
  2. It is a dream deeply rooted in the American dream.
  3. I have a dream that one day this nation will rise up.
  • Friday
  • Saturday
  • Sunday
Picture

๐Ÿค— Demo

js Copy
import { defineComponent, ref } from 'vue';
import { MdEditor } from 'md-editor-rt';
import 'md-editor-rt/lib/style.css';

export default defineComponent({
  name: 'MdEditor',
  setup() {
    const text = ref('');
    return () => (
      <MdEditor modelValue={text.value} onChange={(v: string) => (text.value = v)} />
    );
  }
});

๐Ÿ–จ 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

THead1 THead2 THead3
text-align:left text-align:center text-align:right

๐Ÿ“ Formula

Inline: x+y^{2x}

\sqrt[3]{x}

๐Ÿงฌ Diagram

flowchart TD Start --> Stop

๐Ÿช„ Alert

Supported Types

noteใ€abstractใ€infoใ€tipใ€successใ€questionใ€warningใ€failureใ€dangerใ€bugใ€exampleใ€quoteใ€hintใ€cautionใ€errorใ€attention

โ˜˜๏ธ em...


Source code of mark, emoji, preview and time extension components in this page: components