Difference between revisions of "User talk:Grundlett"

From Slicer Wiki
Jump to: navigation, search
(Test of the Graphviz extension using v2.1.0)
Line 1: Line 1:
'''Welcome to ''SlicerWiki''!'''
+
The code below implements an imagemap using the [https://www.mediawiki.org/wiki/Extension:GraphViz GraphViz extension]:
We hope you will contribute much and well.
+
;Code:
You will probably want to read the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents help pages].
+
<pre>
Again, welcome and have fun! [[User:Marianna|Marianna]] ([[User talk:Marianna|talk]]) 15:56, 21 June 2016 (EDT)
+
<graphviz caption="Imagemap test">
 
+
digraph example3 {
 +
  Google [URL="http://www.google.com" TITLE="Google"];
 +
  Bing [URL="http://www.bing.com" TITLE="Bing"];
 +
}
 +
</graphviz>
 +
</pre>
  
 +
;Results:
 
<graphviz caption="Imagemap test">
 
<graphviz caption="Imagemap test">
 
digraph example3 {
 
digraph example3 {

Revision as of 19:52, 20 February 2018

Home < User talk:Grundlett

The code below implements an imagemap using the GraphViz extension:

Code
<graphviz caption="Imagemap test">
digraph example3 {
  Google [URL="http://www.google.com" TITLE="Google"];
  Bing [URL="http://www.bing.com" TITLE="Bing"];
}
</graphviz>
Results

<graphviz caption="Imagemap test"> digraph example3 {

 Google [URL="http://www.google.com" TITLE="Google"];
 Bing [URL="http://www.bing.com" TITLE="Bing"];

} </graphviz>