1.4.0 โ€ข Published 4 years ago

@lmikoto/vditor v1.4.0

Weekly downloads
5
License
MIT
Repository
github
Last release
4 years ago

๐Ÿ’ก Introduction

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

Welcome to Vditor Official Discussion Area 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, Instant Rendering and Split View
  • Support task list, at, chart, flow chart, Gantt chart, sequence chart, stave, multimedia, voice reading, title anchor rendering
  • Support Shortcut Key operation
  • Support Markdown Formatting, Markdown Syntax Tree Real-time Rendering
  • Emoji Automatically complete, set common emoticons, support emoticon customization
  • Customize Toolbar button, prompt, insert character, shortcut key, support toolbar to add button
  • Can use drag and drop, clipboard to paste 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
  • Paste HTML Automatic conversion to Markdown, if the paste contains images of external links, it can be uploaded to the server through the specified interface
  • Provide real-time preview, scroll synchronization positioning
  • Support main window size drag and drop, character counting
  • Multi-theme support, built-in black and white themes
  • Multi-language support, built-in Chinese, English, Korean text localization
  • Support mainstream browsers and mobile-end

demo

render

๐Ÿ”ฎ 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

๐Ÿ› ๏ธ 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 static.html
<!-- โš ๏ธ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 itselfHTMLElement

โš ๏ธ: 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'

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 , undo , redo , upload , link , table , record , edit-mode , both , preview , format , fullscreen , devtools , info , help , br
  • When name is not in the enumeration, you can add a custom button in the following format:
{  
 hotkey: 'โŒ˜-โ‡ง-f',  
 name: 'format',  
 tipPosition: 'ne',  
 tip: 'format',  
 className: '',
 icon: '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="768" height="768" viewBox="0 0 768 768"><path d="M342 426v-84h426v84h-426zM342 256v-86h426v86h-426zM0 0h768v86h-768v-86zM342 598v-86h426v86h-426zM0 214l170 170-170 170v-340zM0 768v-86h768v86h-768z"></path></svg>',  
 click: () => {  
   alert('custom toolbar')  
 },  
}
ExplanationDefault
nameUnique label-
iconsvg icon-
tipPrompt-
tipPositionPrompt location: ne, nw-
hotkeyShortcut keys, support โŒ˜/ctrl-key or โŒ˜/ctrl-โ‡ง/shift-key format configuration, do not support wysiwyg mode-
suffixInsert the suffix in the editor-
prefixInsert the prefix in the editor-
clickCustom event triggered when button is clicked (): void-
classNameStyle name''

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-

options.preview

ExplanationDefault
delayPreview debounce millisecond interval1000
maxWidthPreview area maximum width768
modeDisplay mode: both, editor, preview'both'
urlmd parsing request-
parsePreview callback (element: HTMLElement): void-
transformCallback before rendering (html: string): string-

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

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\, 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[]-

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''

options.keymap

ExplanationDefault
deleteLineDelete the cursor line or selected line'โŒ˜-Backspace'
duplicateCopy current line or selected content'โŒ˜-D'

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
setSelection(start: number, end: number)Select the string from start to end and does not support wysiwyg mode
getSelection(): stringReturns the selected string
setValue(markdown: string)Set editor content
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" | "preview")Set preview mode
setTheme(theme: "dark" | "classic")Set theme
getCurrentMode(): stringGet the editor's current editing mode

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?: boolean;  // Add an anchor to the title
 theme?: string;  // Theme: 'classic' | 'dark', default is 'classic'
 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
 cdn?: string // Self-built CDN address
}
  • โš ๏ธmethod.min.js andindex.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
md2html(mdText: string, options?: IPreviewOptions): Promise\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

๐Ÿ— Developer Guide

Principle related

Environment

  1. Install node LTS version
  2. Download latest code and unzip
  3. Run npm install in the root directory
  4. npm run start Start the local server, open http: // localhost: 9000
  5. Modify the code
  6. 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 andIPreviewOptions 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
1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago