This commit is contained in:
Thomas Breloff 2015-10-17 23:31:50 -04:00
parent 593c47b938
commit 60b3a1583d
3 changed files with 3 additions and 2 deletions

View File

@ -196,7 +196,7 @@ function generate_markdown(pkgname::Symbol)
# open the markdown file # open the markdown file
md = open("$DOCDIR/$(pkgname)_examples.md", "w") md = open("$DOCDIR/$(pkgname)_examples.md", "w")
write(md, "## Examples for backend: $pkgname\n(generated $(now()))\n\n") write(md, "## Examples for backend: $pkgname\n\n")
write(md, "### Initialize\n\n```julia\nusing Plots\n$(pkgname)()\n```\n\n") write(md, "### Initialize\n\n```julia\nusing Plots\n$(pkgname)()\n```\n\n")
@ -244,6 +244,7 @@ function generate_markdown(pkgname::Symbol)
write(md, "- Supported values for marker: $(createStringOfMarkDownSymbols(supportedMarkers(pkg)))\n") write(md, "- Supported values for marker: $(createStringOfMarkDownSymbols(supportedMarkers(pkg)))\n")
write(md, "- Is `subplot`/`subplot!` supported? $(subplotSupported(pkg) ? "Yes" : "No")\n\n") write(md, "- Is `subplot`/`subplot!` supported? $(subplotSupported(pkg) ? "Yes" : "No")\n\n")
write(md, "(Automatically generated: $(now()))")
close(md) close(md)
end end

View File

@ -1,5 +1,4 @@
## Examples for backend: gadfly ## Examples for backend: gadfly
(generated 2015-10-17T23:27:21)
### Initialize ### Initialize
@ -247,3 +246,4 @@ plot(0.1:0.2:0.9,0.7 * rand(5) + 0.15,l=(3,:dash,:lightblue),m=(Shape(verts),30,
- Supported values for marker: `:Plots.Shape`, `:auto`, `:cross`, `:diamond`, `:dtriangle`, `:ellipse`, `:heptagon`, `:hexagon`, `:none`, `:octagon`, `:pentagon`, `:rect`, `:star4`, `:star5`, `:star6`, `:star7`, `:star8`, `:utriangle`, `:xcross` - Supported values for marker: `:Plots.Shape`, `:auto`, `:cross`, `:diamond`, `:dtriangle`, `:ellipse`, `:heptagon`, `:hexagon`, `:none`, `:octagon`, `:pentagon`, `:rect`, `:star4`, `:star5`, `:star6`, `:star7`, `:star8`, `:utriangle`, `:xcross`
- Is `subplot`/`subplot!` supported? Yes - Is `subplot`/`subplot!` supported? Yes
(Automatically generated: 2015-10-17T23:31:37)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 76 KiB