We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
editor.on('change', function() { const md = editor.getMarkdown(); if(md.length > 10) { editor.setMarkdown(md.substring(0, 10)) } }) 类似上述代码,Markdown内容变更后,输入1234578901,左侧Markdown内容变味1234567890,而右侧preview区还是1234578901
The text was updated successfully, but these errors were encountered:
No branches or pull requests
editor.on('change', function() {
const md = editor.getMarkdown();
if(md.length > 10) {
editor.setMarkdown(md.substring(0, 10))
}
})
类似上述代码,Markdown内容变更后,输入1234578901,左侧Markdown内容变味1234567890,而右侧preview区还是1234578901
The text was updated successfully, but these errors were encountered: