@@ -54,51 +54,8 @@ Visit the :doc:`Matplotlib installation instructions <users/installing>`.
5454Documentation
5555-------------
5656
57- This is the documentation for Matplotlib version |version |.
58-
5957To get started, read the :doc: `User's Guide <users/index >`.
6058
61- .. raw :: html
62-
63- <p id =" other_versions" ></p >
64-
65- <script >
66- function getSnippet (id , url ) {
67- var req = false ;
68- // For Safari, Firefox, and other non-MS browsers
69- if (window .XMLHttpRequest ) {
70- try {
71- req = new XMLHttpRequest ();
72- } catch (e) {
73- req = false ;
74- }
75- } else if (window .ActiveXObject ) {
76- // For Internet Explorer on Windows
77- try {
78- req = new ActiveXObject (" Msxml2.XMLHTTP" );
79- } catch (e) {
80- try {
81- req = new ActiveXObject (" Microsoft.XMLHTTP" );
82- } catch (e) {
83- req = false ;
84- }
85- }
86- }
87- var element = document .getElementById (id);
88- if (req) {
89- // Synchronous request, wait till we have it all
90- req .open (' GET' , url, false );
91- req .send (null );
92- if (req .status == 200 ) {
93- element .innerHTML = req .responseText ;
94- } else {
95- element .innerHTML = " <mark>Could not find Snippet to insert at " + url + " </mark>"
96- }
97- }
98- }
99- getSnippet (' other_versions' , ' /versions.html' );
100- </script >
101-
10259Trying to learn how to do a particular kind of plot? Check out the
10360:doc: `examples gallery <gallery/index >` or the :doc: `list of plotting commands
10461<api/pyplot_summary>`.
0 commit comments