1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-08-06 03:00:36 +00:00
TiddlyWiki5/editions/tw2/source/tiddlywiki/deprecated/Wikifier.js
2012-11-16 21:20:27 +00:00

17 lines
335 B
JavaScript
Executable File

//--
//-- Deprecated Wikifier code
//--
//# Wikify a named tiddler to plain text
function wikifyPlain(title,theStore,limit)
{
if(!theStore)
theStore = store;
if(theStore.tiddlerExists(title) || theStore.isShadowTiddler(title)) {
return wikifyPlainText(theStore.getTiddlerText(title),limit,tiddler);
} else {
return "";
}
}