2014-01-05 09:58:01 +00:00
|
|
|
/*\
|
|
|
|
title: $:/plugins/tiddlywiki/highlight/highlightblock.js
|
|
|
|
type: application/javascript
|
2014-01-07 22:57:46 +00:00
|
|
|
module-type: widget
|
2014-01-05 09:58:01 +00:00
|
|
|
|
|
|
|
Wraps up the fenced code blocks parser for highlight and use in TiddlyWiki5
|
|
|
|
|
|
|
|
\*/
|
|
|
|
(function() {
|
|
|
|
|
2014-02-10 13:51:38 +00:00
|
|
|
/*jslint node: true, browser: true */
|
|
|
|
/*global $tw: false */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var CodeBlockWidget = require("$:/core/modules/widgets/codeblock.js").codeblock;
|
|
|
|
|
|
|
|
CodeBlockWidget.prototype.postRender = function() {
|
|
|
|
var domNode = this.domNodes[0];
|
|
|
|
if($tw.browser && this.document !== $tw.fakeDocument && this.language) {
|
2014-03-02 19:42:40 +00:00
|
|
|
domNode.className = this.language.toLowerCase();
|
2014-02-10 13:51:38 +00:00
|
|
|
var hljs = require("$:/plugins/tiddlywiki/highlight/highlight.js").hljs;
|
|
|
|
hljs.tabReplace = " ";
|
|
|
|
hljs.highlightBlock(domNode);
|
|
|
|
}
|
|
|
|
};
|
2014-01-05 09:58:01 +00:00
|
|
|
|
|
|
|
})();
|