对于https://github.com/securingsincity/react-ace
我知道文档不支持模式 php - 但我想使用它。
有没有办法包括添加它的步骤?https://ace.c9.io似乎支持它 - 有没有简单的方法来添加额外的模式/主题?
对于https://github.com/securingsincity/react-ace
我知道文档不支持模式 php - 但我想使用它。
有没有办法包括添加它的步骤?https://ace.c9.io似乎支持它 - 有没有简单的方法来添加额外的模式/主题?
嗨大括号包也支持php模式......
import React from 'react'
import AceEditor from 'react-ace'
import 'brace/mode/php'
import 'brace/snippets/php';
import 'brace/theme/tomorrow'
const MyEditor = () => {
return (
<AceEditor
name="my-editor"
mode="php"
theme="tomorrow"
value=""
width="100%"
height="500px" />
)
}
export default MyEditor