html-not.dot 434 B

1234567891011121314151617181920212223
  1. /* html strings in node names */
  2. digraph "l"
  3. {
  4. /* <tag> becomes "tag" */
  5. <tag>;
  6. /* <<tag>> becomes "<tag>" */
  7. <<tag>>;
  8. <<tag>tag</tag>>;
  9. /* this label has only a newline */
  10. <<br/>>[label=<<br/>>];
  11. /* this html node name has no chars */
  12. <>;
  13. /* this comment is not processed */
  14. <<!--comment-->>;
  15. <tag>-><<tag>>;
  16. <<tag>>-><<tag>tag</tag>>;
  17. <<tag>tag</tag>>-><<br/>>[label=<<br/>>];
  18. <<br/>>-><>;
  19. <>-><<!--comment-->>;
  20. }