analýza/princip.dot
author František Kučera <franta-hg@frantovo.cz>
Tue, 13 Sep 2011 18:06:07 +0200
changeset 37 2e4e7891a2f7
parent 6 801a8935caf7
child 87 25dec6931f18
permissions -rw-r--r--
Wiki syntaxe #7 – základ, podpora Markdown syntaxe.

digraph princip {
    rankdir=LR

    gen		[label="Generátor\n(Ant: build.xml)" shape="box"]
    xml		[label="Texty v XML"]
    xhtml	[label="XHTML web"]
    xslt	[label="XSLT šablony"]

    atom	[label="Atom"]
    rss		[label="RSS"]
    sitemap	[label="sitemap.xml"]

    xml -> gen;
    xslt -> gen;

    gen -> xhtml;
    gen -> atom;
    gen -> rss;
    gen -> sitemap;
}