> My reading of the core source seems to indicate that > wikify(source,place); > APPENDS elements to the specified place (the containing DOM element), > but does NOT create an 'enclosing span tag' as a container *within* > that place. Have I mis-read the code, or have I mis-understood the > question?
You're quite right, the wikify() function doesn't create the <span> itself, it just appends the nodes to a specified node. Thus, if you want to intermingle the wikified output inline with other HTML nodes, you'll need to pull the nodes up out of the node in which they were created. Cheers Jeremy -- Jeremy Ruston mailto:[email protected] http://www.tiddlywiki.com -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

