diff options
author | Jed Barber <jjbarber@y7mail.com> | 2017-01-21 12:42:02 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2017-01-21 12:42:02 +1100 |
commit | 31b2f62e121cb219d1f9ae2189da5bf53863b7a2 (patch) | |
tree | a263983809126823e147feb78bc01c41587b1fc8 /project/templates/grasp.html | |
parent | de726f62746d4553197d644622223dfc8aa0f3c3 (diff) |
External links now target _blank
Diffstat (limited to 'project/templates/grasp.html')
-rw-r--r-- | project/templates/grasp.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/project/templates/grasp.html b/project/templates/grasp.html index 9cfd308..7919547 100644 --- a/project/templates/grasp.html +++ b/project/templates/grasp.html @@ -11,9 +11,9 @@ <h4>Grasp Interpreter</h4> -<p>Like Lisp, the esoteric programming language <a href="http://esolangs.org/wiki/Grasp">Grasp</a> -is a homoiconic language that exclusively uses a single datatype. Except instead of lists, it uses -directed graphs.</p> +<p>Like Lisp, the esoteric programming language <a href="http://esolangs.org/wiki/Grasp" target="_blank"> +Grasp</a> is a homoiconic language that exclusively uses a single datatype. Except instead of lists, it +uses directed graphs.</p> <p>A Grasp program is initialised with instruction pointers to those nodes in the graph that have a "name" edge to a node with the value "grasp:main". The nodes at each instruction pointer are @@ -28,8 +28,8 @@ all instruction pointers have no more "next" edges to follow.</p> <figcaption>Hello World in Grasp</figcaption> </figure> -<p>In the <a href="https://github.com/fis/grajsp/wiki/Grasp-specification">current specification</a>, -the actions that can be performed are:</p> +<p>In the <a href="https://github.com/fis/grajsp/wiki/Grasp-specification" target="_blank">current +specification</a>, the actions that can be performed are:</p> <ul> <li>add or delete an edge</li> |