代码之家  ›  专栏  ›  技术社区  ›  jantimon

BESPIN嵌入式设置?

  •  0
  • jantimon  · 技术社区  · 15 年前

    我想你们大多数人都知道基于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。

    这有可能吗?

    1 回复  |  直到 15 年前
        1
  •  1
  •   jantimon    15 年前

    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

    推荐文章