@@ -95,28 +95,28 @@ yourself, it is not difficult to build Matplotlib from source.
9595
9696The easiest way to get the latest development version to start contributing
9797is to go to the git `repository <https://github.com/matplotlib/matplotlib >`_
98- and run: : :
98+ and run::
9999
100100 git clone https://github.com/matplotlib/matplotlib.git
101101
102102If you're developing, it's better to do it in editable mode. The reason why
103103is that pytest's test discovery only works for Matplotlib
104104if installation is done this way. Also, editable mode allows your code changes
105105to be instantly propagated to your library code without reinstalling (though
106- you will have to restart your python process / kernel): : :
106+ you will have to restart your python process / kernel)::
107107
108108 python -m pip install -e .
109109
110110If you're not developing, it can be installed from the source directory with
111- a simple ::
111+ a simple::
112112
113113 python -m pip install .
114114
115- To run the tests you will need to install some additional dependencies: : :
115+ To run the tests you will need to install some additional dependencies::
116116
117117 python -m pip install -r requirements/dev/dev-requirements.txt
118118
119- .. warning ::
119+ .. warning ::
120120
121121 The following instructions in this section are for very custom
122122 installations of Matplotlib. Proceed with caution because these instructions
@@ -139,7 +139,7 @@ Dependencies
139139------------
140140
141141Matplotlib will automatically install dependencies when you install with
142- `pip `, so this section is mostly for your reference.
142+ `` pip ` `, so this section is mostly for your reference.
143143
144144Matplotlib requires the following dependencies:
145145
@@ -269,7 +269,7 @@ and on Windows:
269269 - ``ttconv ``: a TrueType font utility.
270270
271271If you go this route but need to reset and rebuild to change your settings,
272- remember to clear your artifacts before re-building: : :
272+ remember to clear your artifacts before re-building::
273273
274274 git clean -xfd
275275
0 commit comments