Skip to content

Instantly share code, notes, and snippets.

@blurymind
Forked from gnysek/acejs_bbc
Created July 22, 2019 08:00
Show Gist options
  • Save blurymind/6b72a19424b3aba20b0a53d005553693 to your computer and use it in GitHub Desktop.
Save blurymind/6b72a19424b3aba20b0a53d005553693 to your computer and use it in GitHub Desktop.
ACE js bbcode
define(function(require, exports, module) {
"use strict";
var oop = require("../lib/oop");
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
var MyNewHighlightRules = function() {
this.$rules = {
"start" : [
{
token: 'constant.numeric',
regex: '(\\[|\\[/)([a-z0-9=]*|\\*)(\\])'
//next: "end"
}
],
};
};
oop.inherits(MyNewHighlightRules, TextHighlightRules);
exports.MyNewHighlightRules = MyNewHighlightRules;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment