Note: An alternative skin, TW4MW (work in progress), is available from the user preferences.

TextToXMLDOMPlugin

TiddlyWiki Community Wiki

Jump to: navigation, search
Name: TextToXMLDOMPlugin
Author : Phil Hawksworth
URL : #TextToXMLDOMPlugin
Description : Convert a chunk of text into XML DOM for traversing using standard XML DOM methods
Version : 0.2



[edit] Usage examples:

  • Create an XMLDOM object from some text
var xml = getXML(text);


  • Use standars XML DOM methods to parse the object. For example, get all of the 'thing' tag elements.
var things = xml.getElementsByTagName("thing");


  • Get the uri attribute of the first 'thing' element.
var thingUri = things[0].getAttribute("uri");
Personal tools