mirror of
				https://github.com/Jermolene/TiddlyWiki5
				synced 2025-10-31 07:32:59 +00:00 
			
		
		
		
	 07df513140
			
		
	
	07df513140
	
	
	
		
			
			Testing against the output of cook.rb isn't satisfactory because of the bugs in it; instead we're now going to test against the tiddlywiki.com build products
		
			
				
	
	
		
			17 lines
		
	
	
		
			335 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			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 "";
 | |
| 	}
 | |
| }
 | |
| 
 |