Changeset 1048
- Timestamp:
- 11/27/06 03:40:17 (23 months ago)
- Location:
- Trunk/core/js
- Files:
-
- 2 modified
-
Macros.js (modified) (1 diff)
-
Wikifier.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Trunk/core/js/Macros.js
r1047 r1048 615 615 { 616 616 case undefined: 617 highlightify(value,place,highlightHack );617 highlightify(value,place,highlightHack,tiddler); 618 618 break; 619 619 case "link": -
Trunk/core/js/Wikifier.js
r712 r1048 58 58 59 59 // Highlight plain text into an element 60 function highlightify(source,output,highlightRegExp )60 function highlightify(source,output,highlightRegExp,tiddler) 61 61 { 62 62 if(source && source != "") 63 63 { 64 var wikifier = new Wikifier(source,formatter,highlightRegExp );64 var wikifier = new Wikifier(source,formatter,highlightRegExp,tiddler); 65 65 wikifier.outputText(output,0,source.length); 66 66 }
