对于 react-ace,我想添加目前不支持的模式 php

With react-ace I would like add mode php which is currently not supported

对于https://github.com/securingsincity/react-ace

我知道文档不支持模式 php - 但我想使用它。

有没有办法包含添加它的步骤? https://ace.c9.io 似乎支持它 - 有添加其他模式/主题的简单方法吗?

Hi brace 包也支持 php 模式...

List of supported mode for brace(ace-editor) reference

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