- Code Highlight
- Cmd/Ctrl + D (Duplicate Line or Selection)
- Cmd/Ctrl + / (Append/Remove Inline Comment)
static defaultProps = {
prefixCode: '',
prefixCodeClassName: 'prefix-code',
// Web Worker for fast
workerUrl: null,
contentEditable: true,
// whether inject preset style?
mountStyle: true,
// the language of code
language: '',
tabSize: 4,
code: '',
className: '',
style: {},
// true: TabKey performance is switching active item.
ignoreTabKey: false,
onChange: code => {},
// ...rest props of dom
};
- worker.js ?