mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-29 22:06:48 +00:00
Move the editions into a subfolder
This commit is contained in:
16
editions/tw2/source/tiddlywiki/deprecated/Wikifier.js
Executable file
16
editions/tw2/source/tiddlywiki/deprecated/Wikifier.js
Executable file
@@ -0,0 +1,16 @@
|
||||
//--
|
||||
//-- 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 "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user