Skip to content

Commit ae3a5ee

Browse files
committed
Be express about language in Markdown fences
1 parent ebbb8b2 commit ae3a5ee

24 files changed

+1087
-854
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ about: Report a bug in Stack
55

66
Please follow the steps below for reporting a bug:
77

8-
Make sure that you are using the latest release (currently stack-2.7.5).
9-
See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade) to upgrade.
8+
Make sure that you are using the latest release (currently stack-2.7.5). See the
9+
[upgrade instructions](http://docs.haskellstack.org/en/stable/install_and_upgrade/#upgrade)
10+
to upgrade.
1011

1112
Please use the following schema for your bug report:
1213

@@ -31,20 +32,21 @@ What you expected to see and happen.
3132

3233
What actually happened.
3334

34-
If you suspect that a stack command misbehaved, please include the output of that command in `--verbose` mode.
35-
If the output is larger than a page please paste the output in a [Gist](https://gist.github.com/).
35+
If you suspect that a Stack command misbehaved, please include the output of
36+
that command in `--verbose` mode. If the output is larger than a page please
37+
paste the output in a [Gist](https://gist.github.com/).
3638

37-
```
38-
$ stack <your command here> <args> --verbose
39+
~~~text
40+
stack <your command here> <args> --verbose
3941
<output>
40-
```
42+
~~~
4143

4244
### Stack version
4345

44-
```
45-
$ stack --version
46+
~~~text
47+
stack --version
4648
Version 1.9.1, Git revision f9d0042c141660e1d38f797e1d426be4a99b2a3c (6168 commits) x86_64 hpack-0.31.0
47-
```
49+
~~~
4850

4951
### Method of installation
5052

.github/ISSUE_TEMPLATE/question.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ See the [upgrade instructions](http://docs.haskellstack.org/en/stable/install_an
1414

1515
### Stack version
1616

17-
```
18-
$ stack --version
17+
~~~text
18+
stack --version
1919
Version 1.9.1, Git revision f9d0042c141660e1d38f797e1d426be4a99b2a3c (6168 commits) x86_64 hpack-0.31.0
20-
```
20+
~~~
2121

2222
### Method of installation
2323

CONTRIBUTING.md

+30-30
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,11 @@ be found in the
236236
folder and unit tests, in the
237237
[src/test](https://github.com/commercialhaskell/stack/tree/master/src/test)
238238
folder. Tests are written using the [Hspec](https://hspec.github.io/) framework.
239-
In order to run the full test suite, you can simply do:
239+
In order to run the full test suite, you can simply command:
240240

241-
```bash
242-
$ stack test
243-
```
241+
~~~text
242+
stack test
243+
~~~
244244

245245
The `--file-watch` is a very useful option to get quick feedback. However,
246246
running the entire test suite after each file change will slow you down. You'll
@@ -250,59 +250,59 @@ description of this follows below.
250250

251251
### Working with Unit Tests
252252

253-
If you would like to run the unit tests on their own, you can:
253+
If you would like to run the unit tests on their own, you can command:
254254

255-
```bash
256-
$ stack test stack:stack-test
257-
```
255+
~~~text
256+
stack test stack:stack-test
257+
~~~
258258

259-
Running an individual module works like this:
259+
Running an individual module works with a command like this:
260260

261-
```bash
262-
$ stack test stack:stack-test --ta "-m <PATTERN>"
263-
```
261+
~~~text
262+
stack test stack:stack-test --ta "-m <PATTERN>"
263+
~~~
264264

265265
Where `<PATTERN>` is the name of the module without `Spec.hs`.
266266

267-
You may also load tests into GHCi and run them with:
267+
You may also load tests into GHCi and run them with these command:
268268

269-
```bash
270-
$ stack ghci stack:stack-test --only-main
269+
~~~text
270+
stack ghci stack:stack-test --only-main
271271
# GHCi starting up output ...
272272
> :main -m "<PATTERN>"
273-
```
273+
~~~
274274

275275
Where again, `<PATTERN>` is the name of the module without `Spec.hs`.
276276

277277
### Working with Integration Tests
278278

279-
Running the integration tests is a little involved, you'll need to:
279+
Running the integration tests is a little involved, you'll need to command:
280280

281-
```bash
282-
$ stack build --flag stack:integration-tests stack --exec stack-integration-test
283-
```
281+
~~~text
282+
stack build --flag stack:integration-tests stack --exec stack-integration-test
283+
~~~
284284

285-
Running an individual module works like this:
285+
Running an individual module works with a command like this:
286286

287-
```bash
288-
$ stack build --flag stack:integration-tests stack --exec "stack-integration-test -m <PATTERN>"
289-
```
287+
~~~text
288+
stack build --flag stack:integration-tests stack --exec "stack-integration-test -m <PATTERN>"
289+
~~~
290290

291291
Where `<PATTERN>` is the name of the folder listed in the
292292
[test/integration/tests/](https://github.com/commercialhaskell/stack/tree/master/test/integration/tests)
293-
folder.
293+
directory.
294294

295-
You may also achieve this through GHCi with:
295+
You may also achieve this through GHCi with tihs command:
296296

297-
```bash
298-
$ stack ghci stack:stack-integration-test
297+
~~~text
298+
stack ghci stack:stack-integration-test
299299
# GHCi starting up output ...
300300
> :main -m "<PATTERN>"
301-
```
301+
~~~
302302

303303
Where again, `<PATTERN>` is the name of the folder listed in the
304304
[test/integration/tests/](https://github.com/commercialhaskell/stack/tree/master/test/integration/tests)
305-
folder.
305+
directory.
306306

307307
## Continuous integration (CI)
308308

ChangeLog.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1997,7 +1997,8 @@ Other enhancements:
19971997
[#1306](https://github.com/commercialhaskell/stack/issues/1306)
19981998
* Retry when downloading snapshots and package indices
19991999
* Many build options are configurable now in `stack.yaml`:
2000-
```
2000+
2001+
~~~yaml
20012002
build:
20022003
library-profiling: true
20032004
executable-profiling: true
@@ -2019,7 +2020,8 @@ Other enhancements:
20192020
no-run-benchmarks: true
20202021
reconfigure: true
20212022
cabal-verbose: true
2022-
```
2023+
~~~
2024+
20232025
* A number of URLs are now configurable, useful for firewalls. See
20242026
[#1794](https://github.com/commercialhaskell/stack/issues/1884).
20252027
* Suggest causes when executables are missing.

0 commit comments

Comments
 (0)