All Projects → code-farmer-i → Vue Markdown Editor

code-farmer-i / Vue Markdown Editor

Licence: mit
A markdown editor built on Vue

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Vue Markdown Editor

Balsa
This repository holds source code of Balsa, a self hosted, privacy focused knowledgebase.
Stars: ✭ 93 (-44.97%)
Mutual labels:  markdown, editor
Retext
ReText: Simple but powerful editor for Markdown and reStructuredText
Stars: ✭ 1,500 (+787.57%)
Mutual labels:  markdown, editor
React Markdown
Markdown editor (input) based on React
Stars: ✭ 98 (-42.01%)
Mutual labels:  markdown, editor
React Native Markdown Editor
A markdown editor like github comment editor (contains preview, helper buttons)
Stars: ✭ 59 (-65.09%)
Mutual labels:  markdown, editor
Mpeditor
微信markdown编辑器
Stars: ✭ 146 (-13.61%)
Mutual labels:  markdown, editor
Markdownxiaoshujiang
markdownxiaoshujiang
Stars: ✭ 1,188 (+602.96%)
Mutual labels:  markdown, editor
Markor
Text editor - Notes & ToDo (for Android) - Markdown, todo.txt, plaintext, math, ..
Stars: ✭ 1,394 (+724.85%)
Mutual labels:  markdown, editor
Thiefmd
The markdown editor worth stealing. Inspired by Ulysses, based on code from Quilter
Stars: ✭ 48 (-71.6%)
Mutual labels:  markdown, editor
Vditor
♏ 一款浏览器端的 Markdown 编辑器。
Stars: ✭ 1,742 (+930.77%)
Mutual labels:  markdown, editor
Editor.md
The open source embeddable online markdown editor (component).
Stars: ✭ 11,741 (+6847.34%)
Mutual labels:  markdown, editor
Vnote
A pleasant note-taking platform.
Stars: ✭ 8,714 (+5056.21%)
Mutual labels:  markdown, editor
Pervane
Plain text file based note taking and knowledge base building tool, markdown editor, simple browser IDE.
Stars: ✭ 159 (-5.92%)
Mutual labels:  markdown, editor
O
🌀 Text editor suitable for writing git commit messages and editing Markdown files. Can build executables and jump to errors at the press of `ctrl-space`, for several programming languages. Can format code with `ctrl-w`. Provides general syntax highlighting, rainbow parenthesis and cut/paste portals. o is intentionally limited to VT100.
Stars: ✭ 54 (-68.05%)
Mutual labels:  markdown, editor
Hypermd
A WYSIWYG Markdown Editor for browsers. Break the Wall between writing and previewing.
Stars: ✭ 1,258 (+644.38%)
Mutual labels:  markdown, editor
Canner Slate Editor
📝Rich Text / WYSIWYG Editor built for Modularity and Extensibility.
Stars: ✭ 1,071 (+533.73%)
Mutual labels:  markdown, editor
Markdown Online Editor
📝基于 Vue、Vditor,所构建的在线 Markdown 编辑器,支持流程图、甘特图、时序图、任务列表、HTML 自动转换为 Markdown 等功能;🎉新增「所见即所得」编辑模式。
Stars: ✭ 1,373 (+712.43%)
Mutual labels:  markdown, editor
Vue Simplemde
📝 Vue SimpleMDE - use simplemde with vue.js
Stars: ✭ 730 (+331.95%)
Mutual labels:  markdown, editor
Manuskript
A open-source tool for writers
Stars: ✭ 960 (+468.05%)
Mutual labels:  markdown, editor
Md
✍ 一款高度简洁的微信 Markdown 编辑器:支持 Markdown 所有基础语法、色盘取色、一键复制并粘贴到公众号后台、多图上传、一键下载文档、自定义 CSS 样式、一键重置等特性
Stars: ✭ 2,242 (+1226.63%)
Mutual labels:  markdown, editor
Rich Markdown Editor
The open source React and Prosemirror based markdown editor that powers Outline. Want to try it out? Create an account:
Stars: ✭ 2,468 (+1360.36%)
Mutual labels:  markdown, editor

Markdown Editor built on Vue

Downloads Version License

Links

Communication

qq group: 798884474

Install

# use npm
npm i @kangc/v-md-editor -S

# use yarn
yarn add @kangc/v-md-editor

Quick Start

import Vue from 'vue';
import VueMarkdownEditor from '@kangc/v-md-editor';
import '@kangc/v-md-editor/lib/style/base-editor.css';
import vuepressTheme from '@kangc/v-md-editor/lib/theme/vuepress.js';
import '@kangc/v-md-editor/lib/theme/style/vuepress.css';

VueMarkdownEditor.use(vuepressTheme);

Vue.use(VueMarkdownEditor);

Usage

<template>
  <v-md-editor v-model="text" height="400px"></v-md-editor>
</template>

<script>
  export default {
    data() {
      return {
        text: '',
      };
    },
  };
</script>

Refrence

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].