From a9042d9ad5c3b2b453d83b842c04332e62dba83c Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 29 Oct 2015 23:19:12 +0100 Subject: [PATCH] Unindent code examples in README. This prevents copying leading spaces. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f7b1ac7..16d26e5 100644 --- a/README.md +++ b/README.md @@ -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.