Unindent code examples in README.

This prevents copying leading spaces.
This commit is contained in:
Jannis Leidel 2015-10-29 23:19:12 +01:00
parent 935f66e303
commit a9042d9ad5

View file

@ -17,19 +17,19 @@ To use `recommonmark` inside of Sphinx only takes 2 steps.
First you install it:
```
pip install recommonmark
pip install recommonmark
```
Then add this to your Sphinx conf.py:
```
from recommonmark.parser import CommonMarkParser
from recommonmark.parser import CommonMarkParser
source_parsers = {
'.md': CommonMarkParser,
}
source_parsers = {
'.md': CommonMarkParser,
}
source_suffix = ['.rst', '.md']
source_suffix = ['.rst', '.md']
```
This allows you to write both `.md` and `.rst` files inside of the same project.