removed demos that accompny examples
authorJoey Hess <joey@kodama.kitenet.net>
Thu, 11 Sep 2008 22:09:20 +0000 (18:09 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Thu, 11 Sep 2008 22:09:20 +0000 (18:09 -0400)
This is sorta unfortunate, but I don't want turning the plugin on the cause
php to be forked unnecessarily. And moving them back to the plugin page
doesn't make sense in this case.

underlays/basewiki/directive/sparkline.mdwn

index 53dea26193a5879f6ee37715bb05ae9450fd2653..911ba96fdf64d2f2272e1f12c9bc5531eb3cfbc9 100644 (file)
@@ -2,7 +2,7 @@ The `sparkline` directive is supplied by the [[!iki plugins/sparkline]] plugin.
 
 This directive allows for embedding sparklines into wiki pages. A
 sparkline is a small word-size graphic chart, that is designed to be
-inlined alongside text.
+displayes alongside text.
 
 # examples
 
@@ -10,10 +10,6 @@ inlined alongside text.
        featurepoint="4,-3,red,3" featurepoint="5,10,green,3"]]
 
 This creates a simple line graph, graphing several points.
-[[!if test="enabled(sparkline)" then="""
-[[!sparkline 1 3 5 -3 10 0 width=40 height=16
-featurepoint="4,-3,red,3" featurepoint="5,10,green,3"]]
-"""]]
 It will be drawn 40 pixels wide and 16 pixels high. The high point in the
 line has a green marker, and the low point has a red marker.
 
@@ -21,10 +17,6 @@ line has a green marker, and the low point has a red marker.
        barspacing=1 height=13]]
 
 This more complex example generates a bar graph. 
-[[!if test="enabled(sparkline)" then="""
-[[!sparkline 1 -1(red) 1 -1(red) 1 1 1 -1(red) -1(red)
-style=bar barwidth=2 barspacing=1 height=13]]
-"""]]
 The bars are 2 pixels wide, and separated by one pixel, and the graph is 13
 pixels tall. Width is determined automatically for bar graphs. The points
 with negative values are colored red, instead of the default black.