#!/usr/bin/perl -w # # A example which represents some XML as a tree use strict; use lib '../lib'; use GraphViz::XML; my $xml = '
Check out the latest news.
Under construction!!!
'; my $graph = GraphViz::XML->new($xml); $graph->as_png("xml.png"); #print $g->as_text; #print $g->_as_debug;