Avoid clashing inline markup

Stops and starts emphasis around an inline code markup.

Also removes two emphasis sections, since these are at the start of
bullet points, creating emphasis already.
pull/422/head
Evert Rol 2018-10-03 11:09:48 +02:00
rodzic 32e5ef2a2b
commit b9bab6e19d
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -152,7 +152,7 @@ To use python-2.7: add ``python-2.7`` in runtime.txt file.
The repository will run in a virtualenv with
Python 2 installed. To see a full example repository, visit our
`Python2 example <https://github.com/binder-examples/python2_runtime/blob/master/runtime.txt>`_.
**Python versions in ``runtime.txt`` are ignored when** ``environment.yml`` **is
**Python versions in** ``runtime.txt`` **are ignored when** ``environment.yml`` **is
present in the same folder**.
repo2docker uses R libraries pinned to a specific snapshot on

Wyświetl plik

@ -23,7 +23,7 @@ Specifying a version of Python
To specify a specific version of Python, you have two options:
* **use ``runtime.txt``**. Include a line that specifies the Python version in
* Use ``runtime.txt``. Include a line that specifies the Python version in
this file. This line takes the following form::
python=X.X
@ -31,7 +31,7 @@ To specify a specific version of Python, you have two options:
For example,::
python=2.7
* **Use ``environment.yml``**. The Anaconda distribution also lets you define
* Use ``environment.yml``. The Anaconda distribution also lets you define
the Python environment within ``environment.yml``. To do so, add ``python=X.X``
to your dependencies section, like so::