-
Notifications
You must be signed in to change notification settings - Fork 25
Home
daveray edited this page Sep 25, 2011
·
5 revisions
- Added
(gen-id)
function for generating graphs from arbitrary objects. See README.
-
Breaking change: The
[:node { attrs }]
and[:edge { attrs }]
forms of node and edge attribute statements have been removed. Use(node-attrs {attrs})
and(edge-attrs {attrs})
instead. The sugary form just blended in to everything else too much. -
Breaking change:
show
has been renamedshow!
. - Added
(save)
function to write rendered graph to file (or anything else compatible with(make-output-stream)
) - Full support for HTML values, e.g. in labels. If you put something that looks like HTML in an attribute, it will be correctly escaped so dot will process it. See Graphviz docs for what's acceptable HTML.
- Various documentation improvements and other refinements.
- Graph is stored as an actual AST now rather than a hideous blob of anonymous reifications.
Initial release