HackMD/public/vendor/codemirror/mode/tiddlywiki/tiddlywiki.js

309 lines
8.3 KiB
JavaScript
Raw Normal View History

2015-05-04 07:53:29 +00:00
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
/***
|''Name''|tiddlywiki.js|
|''Description''|Enables TiddlyWikiy syntax highlighting using CodeMirror|
|''Author''|PMario|
|''Version''|0.1.7|
|''Status''|''stable''|
|''Source''|[[GitHub|https://github.com/pmario/CodeMirror2/blob/tw-syntax/mode/tiddlywiki]]|
|''Documentation''|http://codemirror.tiddlyspace.com/|
|''License''|[[MIT License|http://www.opensource.org/licenses/mit-license.php]]|
|''CoreVersion''|2.5.0|
|''Requires''|codemirror.js|
|''Keywords''|syntax highlighting color code mirror codemirror|
! Info
CoreVersion parameter is needed for TiddlyWiki only!
***/
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror"], mod);
else // Plain browser env
mod(CodeMirror);
})(function(CodeMirror) {
"use strict";
CodeMirror.defineMode("tiddlywiki", function () {
// Tokenizer
var textwords = {};
2016-04-20 10:11:40 +00:00
var keywords = {
"allTags": true, "closeAll": true, "list": true,
"newJournal": true, "newTiddler": true,
"permaview": true, "saveChanges": true,
"search": true, "slider": true, "tabs": true,
"tag": true, "tagging": true, "tags": true,
"tiddler": true, "timeline": true,
"today": true, "version": true, "option": true,
"with": true, "filter": true
};
2015-05-04 07:53:29 +00:00
var isSpaceName = /[\w_\-]/i,
2016-04-20 10:11:40 +00:00
reHR = /^\-\-\-\-+$/, // <hr>
reWikiCommentStart = /^\/\*\*\*$/, // /***
reWikiCommentStop = /^\*\*\*\/$/, // ***/
reBlockQuote = /^<<<$/,
2015-05-04 07:53:29 +00:00
2016-04-20 10:11:40 +00:00
reJsCodeStart = /^\/\/\{\{\{$/, // //{{{ js block start
reJsCodeStop = /^\/\/\}\}\}$/, // //}}} js stop
reXmlCodeStart = /^<!--\{\{\{-->$/, // xml block start
reXmlCodeStop = /^<!--\}\}\}-->$/, // xml stop
2015-05-04 07:53:29 +00:00
2016-04-20 10:11:40 +00:00
reCodeBlockStart = /^\{\{\{$/, // {{{ TW text div block start
reCodeBlockStop = /^\}\}\}$/, // }}} TW text stop
2015-05-04 07:53:29 +00:00
2016-04-20 10:11:40 +00:00
reUntilCodeStop = /.*?\}\}\}/;
2015-05-04 07:53:29 +00:00
function chain(stream, state, f) {
state.tokenize = f;
return f(stream, state);
}
2016-04-20 10:11:40 +00:00
function tokenBase(stream, state) {
var sol = stream.sol(), ch = stream.peek();
2015-05-04 07:53:29 +00:00
state.block = false; // indicates the start of a code block.
// check start of blocks
if (sol && /[<\/\*{}\-]/.test(ch)) {
if (stream.match(reCodeBlockStart)) {
state.block = true;
return chain(stream, state, twTokenCode);
}
2016-04-20 10:11:40 +00:00
if (stream.match(reBlockQuote))
2015-07-04 03:31:01 +00:00
return 'quote';
2016-04-20 10:11:40 +00:00
if (stream.match(reWikiCommentStart) || stream.match(reWikiCommentStop))
2015-07-04 03:31:01 +00:00
return 'comment';
2016-04-20 10:11:40 +00:00
if (stream.match(reJsCodeStart) || stream.match(reJsCodeStop) || stream.match(reXmlCodeStart) || stream.match(reXmlCodeStop))
2015-07-04 03:31:01 +00:00
return 'comment';
2016-04-20 10:11:40 +00:00
if (stream.match(reHR))
2015-07-04 03:31:01 +00:00
return 'hr';
2016-04-20 10:11:40 +00:00
}
2015-05-04 07:53:29 +00:00
2016-04-20 10:11:40 +00:00
stream.next();
2015-05-04 07:53:29 +00:00
if (sol && /[\/\*!#;:>|]/.test(ch)) {
if (ch == "!") { // tw header
stream.skipToEnd();
2015-07-04 03:31:01 +00:00
return "header";
2015-05-04 07:53:29 +00:00
}
if (ch == "*") { // tw list
stream.eatWhile('*');
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (ch == "#") { // tw numbered list
stream.eatWhile('#');
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (ch == ";") { // definition list, term
stream.eatWhile(';');
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (ch == ":") { // definition list, description
stream.eatWhile(':');
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (ch == ">") { // single line quote
stream.eatWhile(">");
2015-07-04 03:31:01 +00:00
return "quote";
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
if (ch == '|')
2015-07-04 03:31:01 +00:00
return 'header';
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
if (ch == '{' && stream.match(/\{\{/))
2015-05-04 07:53:29 +00:00
return chain(stream, state, twTokenCode);
// rudimentary html:// file:// link matching. TW knows much more ...
2016-04-20 10:11:40 +00:00
if (/[hf]/i.test(ch) &&
/[ti]/i.test(stream.peek()) &&
stream.match(/\b(ttps?|tp|ile):\/\/[\-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i))
return "link";
2015-05-04 07:53:29 +00:00
// just a little string indicator, don't want to have the whole string covered
2016-04-20 10:11:40 +00:00
if (ch == '"')
2015-07-04 03:31:01 +00:00
return 'string';
2016-04-20 10:11:40 +00:00
if (ch == '~') // _no_ CamelCase indicator should be bold
2015-07-04 03:31:01 +00:00
return 'brace';
2016-04-20 10:11:40 +00:00
if (/[\[\]]/.test(ch) && stream.match(ch)) // check for [[..]]
return 'brace';
2015-05-04 07:53:29 +00:00
if (ch == "@") { // check for space link. TODO fix @@...@@ highlighting
stream.eatWhile(isSpaceName);
2015-07-04 03:31:01 +00:00
return "link";
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
2015-05-04 07:53:29 +00:00
if (/\d/.test(ch)) { // numbers
stream.eatWhile(/\d/);
2015-07-04 03:31:01 +00:00
return "number";
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
2015-05-04 07:53:29 +00:00
if (ch == "/") { // tw invisible comment
if (stream.eat("%")) {
return chain(stream, state, twTokenComment);
2016-04-20 10:11:40 +00:00
} else if (stream.eat("/")) { //
2015-05-04 07:53:29 +00:00
return chain(stream, state, twTokenEm);
}
}
2016-04-20 10:11:40 +00:00
if (ch == "_" && stream.eat("_")) // tw underline
2015-05-04 07:53:29 +00:00
return chain(stream, state, twTokenUnderline);
2016-04-20 10:11:40 +00:00
2015-05-04 07:53:29 +00:00
// strikethrough and mdash handling
2016-04-20 10:11:40 +00:00
if (ch == "-" && stream.eat("-")) {
// if strikethrough looks ugly, change CSS.
if (stream.peek() != ' ')
return chain(stream, state, twTokenStrike);
// mdash
if (stream.peek() == ' ')
return 'brace';
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
if (ch == "'" && stream.eat("'")) // tw bold
return chain(stream, state, twTokenStrong);
if (ch == "<" && stream.eat("<")) // tw macro
return chain(stream, state, twTokenMacro);
2015-05-04 07:53:29 +00:00
// core macro handling
stream.eatWhile(/[\w\$_]/);
2016-04-20 10:11:40 +00:00
return textwords.propertyIsEnumerable(stream.current()) ? "keyword" : null
}
2015-05-04 07:53:29 +00:00
// tw invisible comment
function twTokenComment(stream, state) {
2016-04-20 10:11:40 +00:00
var maybeEnd = false, ch;
2015-05-04 07:53:29 +00:00
while (ch = stream.next()) {
if (ch == "/" && maybeEnd) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-05-04 07:53:29 +00:00
break;
}
maybeEnd = (ch == "%");
}
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
// tw strong / bold
function twTokenStrong(stream, state) {
var maybeEnd = false,
ch;
while (ch = stream.next()) {
if (ch == "'" && maybeEnd) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-05-04 07:53:29 +00:00
break;
}
maybeEnd = (ch == "'");
}
2015-07-04 03:31:01 +00:00
return "strong";
2015-05-04 07:53:29 +00:00
}
// tw code
function twTokenCode(stream, state) {
2015-07-04 03:31:01 +00:00
var sb = state.block;
2015-05-04 07:53:29 +00:00
if (sb && stream.current()) {
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (!sb && stream.match(reUntilCodeStop)) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
if (sb && stream.sol() && stream.match(reCodeBlockStop)) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-07-04 03:31:01 +00:00
return "comment";
2015-05-04 07:53:29 +00:00
}
2015-07-04 03:31:01 +00:00
stream.next();
return "comment";
2015-05-04 07:53:29 +00:00
}
// tw em / italic
function twTokenEm(stream, state) {
var maybeEnd = false,
ch;
while (ch = stream.next()) {
if (ch == "/" && maybeEnd) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-05-04 07:53:29 +00:00
break;
}
maybeEnd = (ch == "/");
}
2015-07-04 03:31:01 +00:00
return "em";
2015-05-04 07:53:29 +00:00
}
// tw underlined text
function twTokenUnderline(stream, state) {
var maybeEnd = false,
ch;
while (ch = stream.next()) {
if (ch == "_" && maybeEnd) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-05-04 07:53:29 +00:00
break;
}
maybeEnd = (ch == "_");
}
2015-07-04 03:31:01 +00:00
return "underlined";
2015-05-04 07:53:29 +00:00
}
// tw strike through text looks ugly
// change CSS if needed
function twTokenStrike(stream, state) {
var maybeEnd = false, ch;
while (ch = stream.next()) {
if (ch == "-" && maybeEnd) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-05-04 07:53:29 +00:00
break;
}
maybeEnd = (ch == "-");
}
2015-07-04 03:31:01 +00:00
return "strikethrough";
2015-05-04 07:53:29 +00:00
}
// macro
function twTokenMacro(stream, state) {
if (stream.current() == '<<') {
2015-07-04 03:31:01 +00:00
return 'macro';
2015-05-04 07:53:29 +00:00
}
2016-04-20 10:11:40 +00:00
var ch = stream.next();
2015-05-04 07:53:29 +00:00
if (!ch) {
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-07-04 03:31:01 +00:00
return null;
2015-05-04 07:53:29 +00:00
}
if (ch == ">") {
if (stream.peek() == '>') {
stream.next();
2016-04-20 10:11:40 +00:00
state.tokenize = tokenBase;
2015-07-04 03:31:01 +00:00
return "macro";
2015-05-04 07:53:29 +00:00
}
}
stream.eatWhile(/[\w\$_]/);
2016-04-20 10:11:40 +00:00
return keywords.propertyIsEnumerable(stream.current()) ? "keyword" : null
2015-05-04 07:53:29 +00:00
}
// Interface
return {
startState: function () {
2016-04-20 10:11:40 +00:00
return {tokenize: tokenBase};
2015-05-04 07:53:29 +00:00
},
token: function (stream, state) {
if (stream.eatSpace()) return null;
var style = state.tokenize(stream, state);
return style;
2016-04-20 10:11:40 +00:00
}
2015-05-04 07:53:29 +00:00
};
});
CodeMirror.defineMIME("text/x-tiddlywiki", "tiddlywiki");
});