diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-06-29 18:42:47 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-06-29 18:42:47 +1000 |
commit | 931b27a04a5af60f297dd66288fd6163c277b181 (patch) | |
tree | 8c3afdab9ec09a9e287e2851cd3143cf31b036bf /project/templates/grasp.html | |
parent | 425785e6fc15bba19cf97a84030bc046e71cbc35 (diff) |
Reworked css for nav, pre, code tags, added some colour
Diffstat (limited to 'project/templates/grasp.html')
-rw-r--r-- | project/templates/grasp.html | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/project/templates/grasp.html b/project/templates/grasp.html index 54e625a..c340483 100644 --- a/project/templates/grasp.html +++ b/project/templates/grasp.html @@ -52,18 +52,17 @@ uses a subset of the DOT graph description language for the file format, to enab as well as relatively easy conversion to a graph image. If a format that more readily converts to a comprehensible graph image is found, a parser for it may be added.</p> -<p>The above example is recorded as follows: +<p>The above example is recorded as follows:</p> <code> - digraph { - 1 [label="puts"] - 2 [label="grasp:main"] - 3 [label="Hello world!"] - - 1 -> 2 [label="name"] - 1 -> 3 [label="in"] - } +digraph { + 1 [label="puts"] + 2 [label="grasp:main"] + 3 [label="Hello world!"] + + 1 -> 2 [label="name"] + 1 -> 3 [label="in"] +} </code> -</p> <p>Source code is available <a href="/cgit/cgit.cgi/esoteric.git/" target="_blank">here</a>.</p> |