Bespin嵌入式设置?

时间:2009-11-21 06:59:22

标签: javascript bespin

我猜大多数人都知道基于网络的代码编辑器 - Mozilla's Bespin project

两周前他们published their first release嵌入版本:

alt text http://img.skitch.com/20091121-xuamnt5ribje25fp666ixyd67k.png

处于alpha阶段documentation并不令人满意。

虽然有settings列表,但我无法将语法更改为js。 你是如何实现这一目标的?

有一个bespin.setSetting方法,但我不知道如何使用它。

只有一个sample code(上面屏幕截图中显示的那个)使用js语法高亮显示。 但它也使用Dojo,我想避免使用Dojo。

这有可能吗?

1 个答案:

答案 0 :(得分:1)

Bespin似乎以某种方式使用了一些dojo命令。 但是它不需要dojo库。

JS(onload):

new bespin.editor.Component("editor", {
    language: "js",
    loadfromdiv: true
});

HTML(head):

<script src="https://bespin.mozilla.com/embed.js"></script>

HTML(正文):

<div id="editor"></div>

结果:JS highlighted editor