@@ -13,24 +13,24 @@ enabled, you may get errors if you don't configure matplotlib for use
1313in these environments. Most importantly, you need to decide what
1414kinds of images you want to generate (PNG, PDF, SVG) and configure the
1515appropriate default backend. For 99% of users, this will be the Agg
16- backend, which uses the C++ `antigrain <http://antigrain.com `_
16+ backend, which uses the C++ `antigrain <http://antigrain.com > `_
1717rendering engine to make nice PNGs. The Agg backend is also
1818configured to recognize requests to generate other output formats
1919(PDF, PS, EPS, SVG). The easiest way to configure matplotlib to use
2020Agg is to call::
2121
22- # do this before importing pylab or pyplot
22+ # do this before importing pylab or pyplot
2323 import matplotlib
2424 matplotlib.use('Agg')
2525 import matplotlib.pyplot as plt
26-
26+
2727Alternatively, you can avoid pylab/pyplot altogeher, which will give
2828you a little more control, by calling the API directly as shown in
29- `agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py `_ .
29+ `agg_oo.py <http://matplotlib.sf.net/examples/api/agg_oo.py > `_ .
3030
3131You can either generate hardcopy on the filesystem by calling savefig::
3232
33- # do this before importing pylab or pyplot
33+ # do this before importing pylab or pyplot
3434 import matplotlib
3535 matplotlib.use('Agg')
3636 import matplotlib.pyplot as plt
5858How do I use matplotlib with zope?
5959----------------------------------
6060
61- TODO
61+ TODO
0 commit comments