1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-08 21:14:25 +00:00
TiddlyWiki5/core/modules/parsers/newwikitextparser/rules/entity.js
2012-06-05 22:54:36 +01:00

31 lines
549 B
JavaScript

/*\
title: $:/core/modules/parsers/newwikitextparser/rules/entity.js
type: application/javascript
module-type: wikitextrule
Wiki text run rule for HTML entities. For example:
{{{
This is a copyright symbol: ©
}}}
\*/
(function(){
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
exports.name = "entity";
exports.runParser = true;
exports.regExpString = "&#?[a-zA-Z0-9]{2,8};";
exports.parse = function(match,isBlock) {
this.pos = match.index + match[0].length;
return [$tw.Tree.Entity(match[0])];
};
})();