Skip to content

Commit 8f2475b

Browse files
authored
Syntax highlighting for Bash in README
1 parent 74ceb1b commit 8f2475b

1 file changed

Lines changed: 14 additions & 13 deletions

File tree

{{cookiecutter.hyphenated}}/README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,26 @@
1010
## Installation
1111

1212
Install this library using `pip`:
13-
14-
pip install {{ cookiecutter.hyphenated }}
15-
13+
```bash
14+
pip install {{ cookiecutter.hyphenated }}
15+
```
1616
## Usage
1717

1818
Usage instructions go here.
1919

2020
## Development
2121

2222
To contribute to this library, first checkout the code. Then create a new virtual environment:
23-
24-
cd {{ cookiecutter.hyphenated }}
25-
python -m venv venv
26-
source venv/bin/activate
27-
23+
```bash
24+
cd {{ cookiecutter.hyphenated }}
25+
python -m venv venv
26+
source venv/bin/activate
27+
```
2828
Now install the dependencies and test dependencies:
29-
30-
pip install -e '.[test]'
31-
29+
```bash
30+
pip install -e '.[test]'
31+
```
3232
To run the tests:
33-
34-
pytest
33+
```bash
34+
pytest
35+
```

0 commit comments

Comments
 (0)