From: http://smcv.pseudorandom.co.uk/ Date: Tue, 27 Nov 2012 12:55:34 +0000 (-0400) Subject: rename plugins/ikiwiki/directive/asymptote.mdwn to plugins/contrib/asymptote/ikiwiki... X-Git-Tag: 3.20121212~18 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/79c1a8d668c73e7fffd38610161193fad829420e?hp=d783ba07fe65430cb4d709e50d445a147e4743e6 rename plugins/ikiwiki/directive/asymptote.mdwn to plugins/contrib/asymptote/ikiwiki/directive/asymptote.mdwn --- diff --git a/doc/plugins/contrib/asymptote/ikiwiki/directive/asymptote.mdwn b/doc/plugins/contrib/asymptote/ikiwiki/directive/asymptote.mdwn new file mode 100644 index 000000000..3036fc030 --- /dev/null +++ b/doc/plugins/contrib/asymptote/ikiwiki/directive/asymptote.mdwn @@ -0,0 +1,27 @@ +The `asymptote` directive is supplied by the [[!iki plugins/asymptote +desc=asymptote]] plugin. + +This directive allows embedding [asymptote](http://asymptote.sourceforge.net/) +diagrams in a page. Example usage: + + \[[!asymptote src=""" + import geometry; + unitsize(1cm); + triangle t = triangle((0,0), (4,0), (0.5,2)); + show(La="$D$", Lb="$E$", Lc="", t); + dot(t.A^^t.B^^t.C); + point pD = midpoint(t.BC); dot(pD); + point pE = midpoint(t.AC); dot(pE); + draw(pD--pE); + point A_ = (pD-t.A)*2+t.A; dot("$A'$", A_, NE); + draw(t.B--A_--t.C, dashed); + draw(t.A--A_, dashed); + point E_ = midpoint(line(t.B,A_)); dot(Label("$E'$", E_, E)); + draw(E_--pD, dashed); + """]] + +The `asymptote` directive supports the following parameters: + +- `src` - The asymptote source code to render. + +[[!meta robots="noindex, follow"]] diff --git a/doc/plugins/ikiwiki/directive/asymptote.mdwn b/doc/plugins/ikiwiki/directive/asymptote.mdwn deleted file mode 100644 index 3036fc030..000000000 --- a/doc/plugins/ikiwiki/directive/asymptote.mdwn +++ /dev/null @@ -1,27 +0,0 @@ -The `asymptote` directive is supplied by the [[!iki plugins/asymptote -desc=asymptote]] plugin. - -This directive allows embedding [asymptote](http://asymptote.sourceforge.net/) -diagrams in a page. Example usage: - - \[[!asymptote src=""" - import geometry; - unitsize(1cm); - triangle t = triangle((0,0), (4,0), (0.5,2)); - show(La="$D$", Lb="$E$", Lc="", t); - dot(t.A^^t.B^^t.C); - point pD = midpoint(t.BC); dot(pD); - point pE = midpoint(t.AC); dot(pE); - draw(pD--pE); - point A_ = (pD-t.A)*2+t.A; dot("$A'$", A_, NE); - draw(t.B--A_--t.C, dashed); - draw(t.A--A_, dashed); - point E_ = midpoint(line(t.B,A_)); dot(Label("$E'$", E_, E)); - draw(E_--pD, dashed); - """]] - -The `asymptote` directive supports the following parameters: - -- `src` - The asymptote source code to render. - -[[!meta robots="noindex, follow"]]