我想你们大多数人都知道基于Web的代码编辑器- Mozilla's Bespin project .
两周前他们 published their first release 嵌入式版本:
alt text http://img.skitch.com/20091121-xuamnt5ribje25fp666ixyd67k.png
处于α阶段 documentation 不太满意。
尽管有 settings 我无法将语法改为JS。 你是怎么做到的?
有一个bespin.setsetting方法,但我不知道如何使用它。
只有一个 sample code (上面屏幕截图中显示的那个)使用JS语法突出显示。 但它也使用Dojo,我想避免使用Dojo。
这有可能吗?
Bespin似乎在某种程度上使用了一些Dojo命令。 但是它不需要Dojo库。
JS(OnLoad):
new bespin.editor.Component("editor", { language: "js", loadfromdiv: true });
HTML(头):
<script src="https://bespin.mozilla.com/embed.js"></script>
HTML(正文):
<div id="editor"></div>
结果: JS highlighted editor