Skip to content

Commit e2de4f3

Browse files
committed
Fix code style when missing the format type or text format
1 parent 37d7e13 commit e2de4f3

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

src/data/markdown/docs/01 guides/01 Getting started/02 Installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sudo apt-get install k6
2323
> command due to firewalls or proxies blocking their requests. If you experience this issue, you may try this
2424
> alternative approach instead:
2525
>
26-
> ```
26+
> ```shell
2727
> wget -q -O - https://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add -
2828
> ```
2929

src/data/markdown/docs/01 guides/02 Using k6/13 Session recording - HAR support.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,9 @@ You have two options to skip third-party requests in your k6 script.
137137

138138
In Chrome, you can use the DevTools Network Filter to select only particular domains. The Filter input accepts a Regex to match multiple domains.
139139

140-
`/loadimpact.com|cloudfront.net/`
140+
```shell
141+
/loadimpact.com|cloudfront.net/
142+
```
141143

142144
![Save HAR filter domain using regex](./images/Session-recording-HAR-support/session_recorder_filter_domain.png)
143145

src/data/markdown/docs/01 guides/02 Using k6/17 HTTP debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ If we run it using `k6 run --http-debug script.js` we get output that looks like
2727

2828
<div class="code-group" data-props='{"labels": [], "lineNumbers": [true]}'>
2929

30-
```text
30+
```shell
3131
/\ |‾‾| /‾‾/ /‾/
3232
/\ / \ | |_/ / / /
3333
/ \/ \ | | / ‾‾\

src/data/markdown/docs/01 guides/06 Misc/05 Archive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ this:
125125

126126
<div class="code-group" data-props='{"labels": ["Structure of archive.tar"], "lineNumbers": [true]}'>
127127

128-
```text
128+
```shell
129129
├-- data
130130
├-- files
131131
| └-- home

src/data/markdown/docs/03 cloud/02 Analyzing Results/11 Result Export.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The CSV data has the following columns of data:
1111

1212
<div class="code-group" data-props='{"labels": []}'>
1313

14-
```
14+
```shell
1515
"time","metric","group_id","response_time","url","method","status","count","load_zone","tags"
1616
```
1717

src/data/markdown/docs/03 cloud/03 Integrations/04 Token.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you're a Google/GitHub Single Sign-On (SSO) user or if you have a use case wh
5252

5353
<div class="code-group" data-props='{"labels": ["Using API token"]}'>
5454

55-
```C
55+
```shell
5656
k6 login cloud --token YOUR_API_AUTH_TOKEN
5757
```
5858

@@ -68,15 +68,15 @@ You can also directly add your k6 cloud API authentication token to a configurat
6868

6969
<div class="code-group" data-props='{"labels": ["Linux", "MacOS", "Windows"], "lineNumbers": [true, true, true]}'>
7070

71-
```
71+
```shell
7272
${HOME}/.config/loadimpact/k6/config.json
7373
```
7474

7575
```
7676
${HOME}/Library/Application Support/LoadImpact/k6/config.json
7777
```
7878

79-
```
79+
```shell
8080
C:\Users\&lt;User&gt;\AppData\Roaming\loadimpact\k6\config.json
8181
```
8282

src/data/markdown/docs/03 cloud/07 Cloud FAQ/12 Virtual Users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Calculating the number of virtual users can be done by using this formula:
3535

3636
<div class="code-group" data-props='{"labels": ["Formula for calculating the number of VUs needed"]}'>
3737

38-
```
38+
```shell
3939
VUs = (hourly sessions * average session duration in seconds)/3600
4040
```
4141

0 commit comments

Comments
 (0)