tiddlywiki
Version:
a non-linear personal web notebook
14 lines (10 loc) • 329 B
JavaScript
/*\
title: $:/plugins/tiddlywiki/wikitext-serialize/rules/codeblock.js
type: application/javascript
module-type: wikiruleserializer
\*/
;
exports.name = "codeblock";
exports.serialize = function(tree,serialize) {
return "```" + tree.attributes.language.value + "\n" + tree.attributes.code.value + "\n```\n\n";
};