Skip to content

Commit 163efb6

Browse files
[fix] untitle some admonition blockquotes
A workaround to stop the shouting in #1156
1 parent 26dd053 commit 163efb6

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
lines changed

src/data/markdown/translated-guides/en/01 Get started/03 Running k6.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,9 @@ For advanced ramping, you can use [scenarios](/using-k6/scenarios) and the `ramp
182182

183183
## Execution modes
184184

185-
<Blockquote mod="note" title="Portability is a major design goal of k6">
185+
<Blockquote mod="note" title="">
186+
187+
**Portability is a major design goal of k6.**
186188

187189
You can run the same test in different modes with minimal changes.
188190

src/data/markdown/translated-guides/en/02 Using k6/05 k6 Options/02 Reference.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,9 @@ $ k6 run --out influxdb=http://localhost:8086/k6 script.js
944944

945945
The maximum number of requests to make per second, in total across all VUs. Available in `k6 run` and `k6 cloud` commands.
946946

947-
<Blockquote mod="attention" title="This option is discouraged">
947+
<Blockquote mod="attention" title="">
948+
949+
**This option is discouraged.""
948950

949951
The `--rps` option has caveats and is difficult to use correctly.
950952

@@ -1154,7 +1156,9 @@ Add/override an [environment variable](/using-k6/environment-variables) with `VA
11541156

11551157
To make the system environment variables available in the k6 script via `__ENV`, use the [`--include-system-env-vars` option](#include-system-env-vars).
11561158

1157-
<Blockquote mod="note" title="The `-e` flag does not configure options">
1159+
<Blockquote mod="note" title="">
1160+
1161+
**The `-e` flag does not configure options.**
11581162

11591163
This flag just provides variables to the script, which the script can use or ignore.
11601164
For example, `-e K6_ITERATIONS=120` does _not_ configure the script iterations.

src/data/markdown/translated-guides/en/02 Using k6/06 Test lifecycle.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ a script always runs through these stages in the same order:
1111
3. VU code runs in the `default` or scenario function, running for as long and as many times as the `options` define. **Required**.
1212
4. The `teardown` function runs, postprocessing data and closing the test environment. _Optional._
1313

14-
<Blockquote mod="note" title="Lifecycle functions">
14+
<Blockquote mod="note" title="">
15+
16+
**Lifecycle functions**
1517

1618
Except for init code, each stage occurs in a _lifecycle function_,
1719
a function called in a specific sequence in the k6 runtime.

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/05 constant-arrival-rate.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ useful for a more accurate representation of RPS, for example.
1616
For explanations about how this executor works, refer to [Open and Closed models](/using-k6/scenarios/concepts/open-vs-closed)
1717
and [Arrival-rate VU allocation](/using-k6/scenarios/concepts/arrival-rate-vu-allocation).
1818

19-
<Blockquote mod="Note" title="Iteration starts are spaced fractionally">
19+
<Blockquote mod="Note" title="">
20+
21+
**Iteration starts are spaced fractionally.**
2022

2123
Iterations **do not** start at exactly the same time.
2224
At a `rate` of `10` with a `timeUnit` of `1s`, each iteration starts about every tenth of a second (that is, each 100ms).
@@ -41,7 +43,9 @@ this executor has the following options:
4143
When you want to maintain a constant number of iterations without being affected by the
4244
performance of the system under test.
4345

44-
<Blockquote mod="note" title="Don't put sleep at the end of an iteration">
46+
<Blockquote mod="note" title="">
47+
48+
**Don't put sleep at the end of an iteration.**
4549

4650
The arrival-rate executors already pace the iteration rate through the `rate` and `timeUnit` properties.
4751
So it's unnecessary to use a `sleep()` function at the end of the VU code.

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors/06 ramping-arrival-rate.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ k6 will attempt to dynamically change the number of VUs to achieve the configure
1212
For explanations about how this executor works, refer to [Open and Closed models](/using-k6/scenarios/concepts/open-vs-closed)
1313
and [Arrival-rate VU allocation](/using-k6/scenarios/concepts/arrival-rate-vu-allocation).
1414

15-
<Blockquote mod="Note" title="Iteration starts are spaced fractionally">
15+
<Blockquote mod="Note" title="">
16+
17+
**Iteration starts are spaced fractionally.**
1618

1719
Iterations **do not** start at exactly the same time.
1820
At a `rate` of `10` with a `timeUnit` of `1s`, each iteration starts about every tenth of a second (that is, each 100ms).
@@ -37,7 +39,9 @@ this executor has the following options:
3739
If you need your tests to not be affected by the system-under-test's performance, and
3840
would like to ramp the number of iterations up or down during specific periods of time.
3941

40-
<Blockquote mod="note" title="Don't put sleep at the end of an iteration">
42+
<Blockquote mod="note" title="">
43+
44+
**Don't put sleep at the end of an iteration.**
4145

4246
The arrival-rate executors already pace the iteration rate through the `rate` and `timeUnit` properties.
4347
It's unnecessary to use a `sleep()` function at the end of the VU code.

src/data/markdown/translated-guides/en/08 Testing Guides/01 API load testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The test load configures the traffic generated by the test. k6 provides two broa
9191
- Through _requests per second_, to simulate raw, real-world throughput
9292

9393

94-
<Blockquote mod="note" title="Sleep when testing APIs">
94+
<Blockquote mod="note" title="">
9595

9696
Generally, your load tests should add [sleep time](https://k6.io/docs/javascript-api/k6/sleep/).
9797
Sleep time helps control the load generator and better simulates the traffic patterns of human users.

0 commit comments

Comments
 (0)