New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vditor

Package Overview
Dependencies
Maintainers
1
Versions
328
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vditor

♏ An In-browser Markdown editor, support WYSIWYG, Instant Rendering (Typora-like) and Split View modes.

3.3.6
Source
npm
Version published
Weekly downloads
33K
46.76%
Maintainers
1
Weekly downloads
 
Created
Source

Vditor
The next generation of Markdown editor, built for the future

npm bundle size



中文  |  Demo

💡 Introduction

Vditor is a browser-side Markdown editor, implemented using TypeScript. Support native JavaScript, Vue, React and Angular, provide desktop.

Welcome to Vditor Official Site to learn more.

📽️ Background

In the initial stage of developing Sym, we directly used WYSIWYG rich text editor. At that time, HTML-based editors were very popular, and it was very convenient to quote them in the project, which also conformed to the usage habits of users at that time.

Later, the rise of Markdown gradually changed everyone's typography. In addition, several of our other projects are for programmer users, so it is also a general trend to migrate to md. We chose CodeMirror, which is an excellent editor, it provides a rich programming interface for developers, and is also compatible with various browsers. it is good.

Later, as the business needs of our projects have precipitated, using CodeMirror sometimes feels more "cumbersome." For example, to implement @automatically complete the user name list, insert Emoji, upload files, etc., it requires more in-depth secondary development, and these business requirements are precisely common and necessary in many project scenarios.

Finally, we decided to start implementing the editor ourselves in Sym. With the iterations of several versions, Sym's editor has matured. In the community HacPai that we operate, people have asked us if we can separate the editor for everyone to use. At the same time, our front-end main programmer V also felt a little bit overwhelmed with maintaining the editors scattered in various projects, plus a good impression of TypeScript, so I decided Use ts to implement a new browser-side md editor.

So, Vditor was born.

✨ Features

  • Support three editing modes: WYSIWYG(wysiwyg), Instant Rendering(ir) and Split View(sv)
  • Support outline, mathematical formulas, mind maps, charts, flowcharts, Gantt charts, timing charts, staffs, multimedia, voice reading, heading anchors, code highlighting and copying, graphviz rendering
  • Built-in security filtering, export, image lazy loading, task list, at, multi-platform preview, multi-theme switching, copy to WeChat function
  • Implementation of CommonMark and GFM specifications, formatting and syntax tree viewing of Markdown, and support for 10+ configurations
  • The toolbar contains 36+ items of operations. In addition to support for expansion, the shortcut keys, tip, tip positions, icons, click events, class names, and sub-toolbars can be customized
  • Emoji auto-complete, set common emoticons, support emoticon customization
  • You can use drag and drop, paste and paste to upload, display real-time upload progress, support CORS cross-domain upload
  • Save content in real time to prevent accidental loss
  • Recording support, users can directly publish voice
  • The markup HTML is automatically converted to Markdown, if the paste contains images of external links, it can be uploaded to the server through the specified interface
  • Support main window size drag and drop, character counting
  • Multi-theme support, built-in black, white and green three sets of themes
  • Multi-language support, built-in Chinese, English, Korean text localization
  • Support mainstream browsers, mobile friendly

editor.png

preview.png

🔮 Editing Modes

WYSIWYG

WYSIWYG mode is more friendly to users who are not familiar with Markdown, and you can use it seamlessly if you are familiar with Markdown.

vditor-wysiwyg

Instant Rendering

Instant Rendering mode should not be unfamiliar to users who are familiar with Typora. In theory, this is the most elegant Markdown editing method.

vditor-ir

Split View

The traditional Split View mode is suitable for Markdown editing on a large screen.

vditor-sv

🗃 Showcases

  • 🎶 Sym A modern community (forum/BBS/SNS/blog) platform implemented in Java
  • 🎸 Solo & 🎷 Pipe B3log distributed community blog end node, welcome to join the next generation community network
  • 📕 LianDi Note A desktop note application that supports Windows, Mac and Linux
  • 🌟 Starfire A distributed content-sharing and discussion community, the spark can catch fire
  • 📝 Arya Based on Vue, Vditor, built online Markdown editor

🛠️ User Guide

CommonJS

  • Install dependencies
npm install vditor --save
  • Introduce and initialize objects in the code, you can refer to index.js
import Vditor from 'vditor'
import "~vditor/src/assets/scss/index" // Or use dark

const vditor = new Vditor(id, {options...})

HTML script

  • Insert CSS and js in HTML, you can refer to demo
<!-- ⚠️Please specify the version number in the production environment, such as https://cdn.jsdelivr.net/npm/vditor@x.x.x/dist... -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/vditor/dist/index.css" />
<script src="https://cdn.jsdelivr.net/npm/vditor/dist/index.min.js" defer></script>

Demo code

Themes

  • Support two sets of black and white themes: classic/dark
  • Use the scss/css developed by yourself to fully customize the style after referring to the existing style
  • Theme colors can be customized by modifying variables in index.scss
  • Adding class="vditor-reset" (classic theme) or class="vditor-reset vditor-reset--dark" (black theme) attribute on the content display element can display the content more friendly

API

id

Can be filled with element id or element itself HTMLElement

⚠️: When filling in the element's HTMLElement, you need to set options.cache.id or set options.cache.enable to false

options
ExplanationDefault
afterCallback method after editor asynchronous rendering is completed-
heightTotal editor height'auto'
minHeightEditing area minimum height-
widthTotal editor width, supports %'auto'
placeholderTips when the input area is empty''
langi18n: en_US, ko_KR, zh_CN'zh_CN'
inputTrigger after input (value: string, previewElement?: HTMLElement): void-
focusTrigger after focusing (value: string): void-
blurTrigger after out of focus (value: string): void-
escTrigger after pressing esc (value: string): void-
ctrlEnterTrigger after pressing ⌘/ctrl+enter (value: string): void-
selectTriggered after selecting text in the editor (value: string): void-
tabtab key operation string, support \ t and any string-
typewriterModeWhether to enable typewriter modefalse
cdnConfigure self-built CDN addresshttps://cdn.jsdelivr.net/npm/vditor@${VDITOR_VERSION}
modeEditing mode: sv, ir, wysiwyg'wysiwyg'
debuggerWhether to display the logfalse
valueEditor initialization value''
themeTheme: classic, dark'classic'
outlineshow outlinefalse
options.toolbar
  • Toolbar, you can use name for shorthand: toolbar: ['emoji', 'br', 'bold', '|', 'line']. See default src/ts/util/Options.ts
  • name can be enumerated as: emoji , headings , bold , italic , strike , | , line , quote , list , ordered-list , check ,outdent ,indent , code , inline-code, insert-after, insert-before, code-theme, content-theme, export, undo , redo , upload , link , table , record , edit-mode , both , preview , fullscreen , outline , devtools , info , help , br
  • When name is not in the enumeration, you can add a custom button in the following format:
new Vditor('vditor', {
  toolbar: [
    {
      hotkey: '⌘-⇧-S',
      name: 'sponsor',
      tipPosition: 's',
      tip: '成为赞助者',
      className: 'right',
      icon: '<svg t="1589994565028" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2808" width="32" height="32"><path d="M506.6 423.6m-29.8 0a29.8 29.8 0 1 0 59.6 0 29.8 29.8 0 1 0-59.6 0Z" fill="#0F0F0F" p-id="2809"></path><path d="M717.8 114.5c-83.5 0-158.4 65.4-211.2 122-52.7-56.6-127.7-122-211.2-122-159.5 0-273.9 129.3-273.9 288.9C21.5 562.9 429.3 913 506.6 913s485.1-350.1 485.1-509.7c0.1-159.5-114.4-288.8-273.9-288.8z" fill="#FAFCFB" p-id="2810"></path><path d="M506.6 926c-22 0-61-20.1-116-59.6-51.5-37-109.9-86.4-164.6-139-65.4-63-217.5-220.6-217.5-324 0-81.4 28.6-157.1 80.6-213.1 53.2-57.2 126.4-88.8 206.3-88.8 40 0 81.8 14.1 124.2 41.9 28.1 18.4 56.6 42.8 86.9 74.2 30.3-31.5 58.9-55.8 86.9-74.2 42.5-27.8 84.3-41.9 124.2-41.9 79.9 0 153.2 31.5 206.3 88.8 52 56 80.6 131.7 80.6 213.1 0 103.4-152.1 261-217.5 324-54.6 52.6-113.1 102-164.6 139-54.8 39.5-93.8 59.6-115.8 59.6zM295.4 127.5c-72.6 0-139.1 28.6-187.3 80.4-47.5 51.2-73.7 120.6-73.7 195.4 0 64.8 78.3 178.9 209.6 305.3 53.8 51.8 111.2 100.3 161.7 136.6 56.1 40.4 88.9 54.8 100.9 54.8s44.7-14.4 100.9-54.8c50.5-36.3 108-84.9 161.7-136.6 131.2-126.4 209.6-240.5 209.6-305.3 0-74.9-26.2-144.2-73.7-195.4-48.2-51.9-114.7-80.4-187.3-80.4-61.8 0-127.8 38.5-201.7 117.9-2.5 2.6-5.9 4.1-9.5 4.1s-7.1-1.5-9.5-4.1C423.2 166 357.2 127.5 295.4 127.5z" fill="#141414" p-id="2811"></path><path d="M353.9 415.6m-33.8 0a33.8 33.8 0 1 0 67.6 0 33.8 33.8 0 1 0-67.6 0Z" fill="#0F0F0F" p-id="2812"></path><path d="M659.3 415.6m-33.8 0a33.8 33.8 0 1 0 67.6 0 33.8 33.8 0 1 0-67.6 0Z" fill="#0F0F0F" p-id="2813"></path><path d="M411.6 538.5c0 52.3 42.8 95 95 95 52.3 0 95-42.8 95-95v-31.7h-190v31.7z" fill="#5B5143" p-id="2814"></path><path d="M506.6 646.5c-59.6 0-108-48.5-108-108v-31.7c0-7.2 5.8-13 13-13h190.1c7.2 0 13 5.8 13 13v31.7c0 59.5-48.5 108-108.1 108z m-82-126.7v18.7c0 45.2 36.8 82 82 82s82-36.8 82-82v-18.7h-164z" fill="#141414" p-id="2815"></path><path d="M450.4 578.9a54.7 27.5 0 1 0 109.4 0 54.7 27.5 0 1 0-109.4 0Z" fill="#EA64F9" p-id="2816"></path><path d="M256 502.7a32.1 27.5 0 1 0 64.2 0 32.1 27.5 0 1 0-64.2 0Z" fill="#EFAFF9" p-id="2817"></path><path d="M703.3 502.7a32.1 27.5 0 1 0 64.2 0 32.1 27.5 0 1 0-64.2 0Z" fill="#EFAFF9" p-id="2818"></path></svg>',
      click () {alert('捐赠地址:https://hacpai.com/sponsor')},
    }],
})
ExplanationDefault
nameUnique label-
iconsvg icon-
tipPrompt-
tipPositionPrompt location: ne, nw-
hotkeyShortcut keys, support ⌘/ctrl-key or ⌘/ctrl-⇧/shift-key format configuration-
suffixInsert the suffix in the editor-
prefixInsert the prefix in the editor-
clickCustom event triggered when button is clicked (): void-
classNameStyle name''
toolbar?: Array<options.toolbar>sub menu-
options.toolbarConfig
ExplanationDefault
hideWhether to hide the toolbarfalse
pinWhether to pin the toolbarfalse
options.counter
ExplanationDefault
enableWhether to use counterfalse
maxmax counter-
typecounter type: md, text'md'
options.cache
ExplanationDefault
enableWhether to use localStorage for cachingtrue
idCache key, the first parameter is an element and when caching is enabled required-
aftercache callback (markdown: string): void-
options.preview
ExplanationDefault
delayPreview debounce millisecond interval1000
maxWidthPreview area maximum width800
modeDisplay mode: both, editor'both'
urlmd parsing request-
parsePreview callback (element: HTMLElement): void-
transformCallback before rendering (html: string): string-
options.preview.theme
ExplanationDefault
currentcurrent Markdown Theme"light"
listChoose Markdown Theme List{ dark: "Dark", light: "Light", wechat: "WeChat" }
pathCSS Pathhttps://cdn.jsdelivr.net/npm/vditor@${VDITOR_VERSION}/dist/css/content-theme
options.preview.hljs
ExplanationDefault
enableWhether to enable code syntax highlightingtrue
styleFor optional values, see Chromagithub
lineNumberWhether to enable line numberfalse
options.preview.markdown
ExplanationDefault
autoSpaceAutospacefalse
fixTermTypoAutomatically correct terminologyfalse
chinesePunctAutomatic punctuation correctionfalse
tocInsert Table of Contentsfalse
footnotesFootnotestrue
codeBlockPreviewWhether to render code blocks in wysiwyg and ir modestrue
setextWhether to parse the setext headertrue
paragraphBeginningSpaceTwo spaces before the paragraphfalse
sanitizeUse XSStrue
listStyleadd data-style attributefalse
linkBaselink prefix''
options.preview.math
ExplanationDefault
inlineDigitWhether numbers are allowed after the inline math formula starting with $false
macrosMacro definition passed in when rendering with MathJax{}
engineMath formula rendering engine: KaTeX, MathJax'KaTeX'
options.hint
ExplanationDefault
delayTip debounce millisecond interval200
emojiThe default emoji can be selected from lute/emoji_map, or can be customized{ '+1': '👍', '-1': '👎', 'heart': '❤️', 'cold_sweat': '😰' }
emojiTailCommon emoji-
emojiPathEmoji pathhttps://cdn.jsdelivr.net/npm/vditor@${VDITOR_VERSION}/dist/images/emoji
at@user callback (value: string): Array<any>, Need to return array synchronously [{value: '', html: ''}]-
options.upload
  • The data structure of the file upload is as follows. When the data structure returned by the backend is inconsistent, you can use format for conversion.
// POST data  
xhr.send(formData);  // formData = FormData.append("file[]", File)  
// return data  
{  
 "msg": "",  
 "code": 0,  
 "data": {  
 "errFiles": ['filename', 'filename2'],  
 "succMap": {  
   "filename3": "filepath3",  
   "filename3": "filepath3"  
   }  
 }  
}
  • In order to prevent the off-site pictures from being invalid, linkToImgUrl can transfer the off-site picture addresses in the clipboard to the server for saving and processing. The data structure is as follows:
// POST data  
xhr.send(JSON.stringify({url: src})); // src is the address of the image outside the station
// return data  
{  
 msg: '',  
 code: 0,  
 data : {  
   originalURL: '',  
   url: ''  
 }  
}
ExplanationDefault
urlUpload url''
maxThe largest upload file Byte10 * 1024 * 1024
linkToImgUrlWhen the clipboard contains the image address, use this url to re-upload''
successUpload success callback (editor: HTMLPreElement, msg: string): void-
errorUpload failure callback (msg: string): void-
tokenCORS upload verification, header is X-Upload-Token-
withCredentialsCross-site access controlfalse
headersRequest header settings-
filenameSanitizing file names (name: string): string | name => name.replace(/\W/g, '')
acceptFile upload type, same as input accept-
validateCheck, return true if successful, otherwise return error message (files: File[]) => string | boolean-
handlerCustom upload, return error message when an error occurs (files: File[]) => string | null-
formatTransform the data returned by the server to meet the built-in data structure (files: File[], responseText: string): string-
fileProcess the uploaded file before returning (files: File[]): File[]-
setHeadersUse the return value to set the header before uploading (): { [key: string]: string }-
extraDataAppend data to FormData { [key: string]: stringBlob }
multipleAllow multiple file uploadstrue
fieldNameThe key of field namefile[]
options.resize
ExplanationDefault
enableWhether to support size dragfalse
positionDrag column position:top, bottom'bottom'
afterCallback when dragging ends (height: number): void-
options.classes
ExplanationDefault
previewPreview on the element className''
methods
Explanation
getValue()Get editor content
getHTML()Get preview area content
insertValue(value: string, render = true)Insert content at the focus and markdown rendering by default
focus()Focus on the editor
blur()Make the editor out of focus
disabled()Disable editor
enable()Unedit editor
getSelection(): stringReturns the selected string
setValue(markdown: string, clearStack = false)Set editor content
clearStack()remove undo and redo stack
renderPreview(value?: string)Set preview area content
getCursorPosition():{top: number, left: number}Get focus position
deleteValue()Delete selected content
updateValue(value: string)Update selected content
isUploading()Whether the upload is still in progress
clearCache()clear cache
disabledCache()Disable cache
enableCache()Enable caching
html2md(value: string)HTML to md
tip(text: string, time: number)notification. time is 0 will always display
setPreviewMode(mode: "both" | "editor")Set preview mode
setTheme(theme: "dark""classic", contentTheme?: string, codeTheme?: string, contentThemePath?: string)
getCurrentMode(): stringGet the editor's current editing mode
destroy()Destroy the vditor
static methods
  • When no editing operation is required, just introduce method.min.js and directly call
Vditor.mermaidRender(document)
import VditorPreview from 'vditor/dist/method.min'  
VditorPreview.mermaidRender(document)
  • When you need to render Markdown on the page, you can directly call the preview method with the following parameters:
previewElement: HTMLDivElement,   // Use this element for rendering
markdown: string,  // The original markdown to be rendered
options?: IPreviewOptions {  
 anchor?: number;  // 0: no render, 1: render left, 2: render right
 customEmoji?: { [key: string]: string };    // Custom emoji, default is {}
 lang?: (keyof II18nLang);    // Language, default is 'zh_CN'  
 emojiPath?: string;    // Emoji picture path 
 hljs?: IHljs; // Refer to options.preview.hljs 
 speech?: {  // Read the selected content
  enable?: boolean,
 };
 math?: IMath; // Math formula rendering configuration
 transform?(html: string): string; // Callback method before rendering
 after?(): void; // Callback method after rendering
 cdn?: string; // Self-built CDN address
 lazyLoadImage?: string; // use "https://cdn.jsdelivr.net/npm/vditor/dist/images/img-loading.svg" to lazy load image
 markdown?: options.preview.markdown;
 renderers?: ILuteRender; // Custom rendering method https://hacpai.com/article/1588412297062
}
  • ⚠️method.min.js and index.min.js cannot be introduced at the same time
Explanation
mermaidRender(element: HTMLElement, className = ".language-mermaid", cdn = options.cdn)Convert elements in class to className in element to flowchart/sequence diagram/gantt diagram
codeRender(element: HTMLElement, lang: (keyof II18nLang) = "zh_CN")Add a copy button for the code block in element
chartRender(element: (HTMLElement| Document) = document, cdn = options.cdn)Chart rendering
abcRender(element: (HTMLElement| Document) = document, cdn = options.cdn)Stave rendering
outlineRender(contentElement: HTMLElement, targetElement: Element, vditor?: IVditor)Outline rendering
md2html(mdText: string, options?: IPreviewOptions): Promise<string>Markdown text is converted to HTML, this method needs to use asynchronous programming
preview(previewElement: HTMLDivElement, markdown: string, options?: IPreviewOptions)Page Markdown article rendering
highlightRender(hljsOption?: IHljs, element?: HTMLElement | Document, cdn = options.cdn)Highlight the code block in element
mediaRender(element: HTMLElement)Rendering as specific link as video, audio, embedded iframe
mathRender(element: HTMLElement, options?: {cdn?: string, math?: IMath})Render math formulas
speechRender(element: HTMLElement, lang?: (keyof II18nLang))Read the selected text
graphvizRender(element: HTMLElement, cdn?: string)Render graphviz
lazyLoadImageRender(element: (HTMLElement | Document) = document)Render lazy load image
setCodeTheme (codeTheme: string, cdn = options.cdn)update code theme
setContentTheme (contentTheme: string, path: string)update content theme
mindmapRender (element: (HTMLElement | Document) = document, cdn = options.cdn)Render mind map

🏗 Developer Guide

Environment

  • Install node LTS version
  • Download latest code and unzip
  • Run npm install in the root directory
  • npm run start Start the local server, open http: // localhost: 9000
  • Modify the code
  • npm run build package code to dist directory

CDN switch

Due to the on-demand loading mechanism, the default CDN is https://cdn.jsdelivr.net/npm/vditor@version number

If the code is modified or you need to use a self-built CDN, you can follow the steps below:

  • The initial options and IPreviewOptions need to add cdn configuration
  • highlightRender, mathRender, abcRender, chartRender, mermaidRender methods need to add cdn parameter
  • Copy the dist directory in the successful build or jsDelivr to the correct location

Upgrade

Please read CHANGELOG carefully when upgrading the version.

Ⓜ️ Markdown User Guide

🏘️ Community

📄 License

Vditor uses the MIT open source license.

🙏 Acknowledgement

  • Lute: A structured Markdown engine that supports Go and JavaScript
  • highlight.js: JavaScript syntax highlighter
  • mermaid: Generation of diagram and flowchart from text in a similar manner as Markdown
  • incubator-echarts: A powerful, interactive charting and visualization library for browser
  • abcjs: JavaScript library for rendering standard music notation in a browser
  • IntelliJ IDEA: Family of capable and ergonomic development environments

Keywords

editor

FAQs

Package last updated on 10 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts