docs: update deprecated blockquote highlight syntax (#19974)

This commit is contained in:
Turiiya 2023-11-23 12:33:33 +01:00 committed by GitHub
parent 2a6c1d9074
commit c80515465e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 15 additions and 15 deletions

View file

@ -60,7 +60,7 @@ matches an expected .out file. You can also check for code that does panic
using this test runner - just paste the start of the `panic()` output in the
corresponding .out file.
> **Note**
> [!NOTE]
> These tests, expect to find a pair of `.vv` and `.out` files, in the folder:
> vlib/v/slow_tests/inout
@ -84,7 +84,7 @@ file is compiled with `-o -` .
This *test runner*, checks whether whole project folders, can be compiled, and run.
> **Note**
> [!NOTE]
> Each project in these folders, should finish with an exit code of 0,
> and it should output `OK` as its last stdout line.
@ -160,7 +160,7 @@ This runs tests for:
* `vlib/v/checker/tests/*.vv`
* `vlib/v/parser/tests/*.vv`
> **Note**
> [!NOTE]
> There are special folders, that compiler_errors_test.v will try to
> run/compile with specific options:
@ -186,7 +186,7 @@ tests in the main V repository, for example:
* `v vet vlib/v` - run a style checker.
* `v test-self` (run self tests) in various compilation modes.
> **Note**
> [!NOTE]
The VDOC test vdoc_file_test.v now also supports VAUTOFIX, which is
useful, if you change anything inside cmd/tools/vdoc or vlib/v/doc/,
or inside the modules that it depends on (like markdown).