Skip to content

Commit b4a1634

Browse files
committed
Fix code fencing.
1 parent d803307 commit b4a1634

6 files changed

Lines changed: 18 additions & 6 deletions

File tree

docs/en/console-commands/commands.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,11 @@ After saving this file, you should be able to run the following command:
8080

8181
``` bash
8282
bin/cake hello jillian
83+
```
84+
85+
This outputs:
8386

84-
# Outputs
87+
```
8588
Hello jillian
8689
```
8790

@@ -277,7 +280,9 @@ This will show your description in the Cake CLI:
277280

278281
``` bash
279282
bin/cake
283+
```
280284

285+
```
281286
App:
282287
- user
283288
└─── My custom description
@@ -287,6 +292,9 @@ As well as in the help section of your command:
287292

288293
``` bash
289294
cake user --help
295+
```
296+
297+
```
290298
My custom description
291299
292300
Usage:

docs/en/core-libraries/internationalization-and-localization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ grouping of translation messages. When no group is used, then the default group
5858
is selected.
5959

6060
The core strings messages extracted from the CakePHP library can be stored
61-
separately in a file named **cake.po** in **resources/locales/**.
61+
separately in a file named **cake.po** in `resources/locales/`.
6262
The [CakePHP localized library](https://github.com/cakephp/localized) houses
6363
translations for the client-facing translated strings in the core (the cake
6464
domain). To use these files, link or copy them into their expected location:

docs/en/core-libraries/number.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ scheme:
6161
|------------|-------------------------------------|
6262
| EUR | €1.234,56 |
6363
| GBP | £1,234.56 |
64-
| USD | \$1,234.56 |
64+
| USD | $1,234.56 |
6565

6666
The third parameter is an array of options for further defining the
6767
output. The following options are available:

docs/en/development/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ will not ever overwrite the existing configuration.
506506
507507
Dumps all or some of the data in Configure into a file or storage system
508508
supported by a config engine. The serialization format is decided by the config
509-
engine attached as \$config. For example, if the 'default' engine is
509+
engine attached as `$config`. For example, if the 'default' engine is
510510
a `Cake\Core\Configure\Engine\PhpConfig`, the generated file will be
511511
a PHP configuration file loadable by the
512512
`Cake\Core\Configure\Engine\PhpConfig`

docs/en/development/routing.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ added your own routes, you can remove the default routes if you don't need them.
109109

110110
<a id="routes-configuration"></a>
111111

112-
## Connecting Routes<span id="connecting-routes"></span>
112+
<a id="connecting-routes"></a>
113+
114+
## Connecting Routes
113115

114116
To keep your code `DRY` you should use 'routing scopes'. Routing
115117
scopes not only let you keep your code DRY, they also help Router optimize its

docs/en/orm/table-objects.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,9 @@ class ArticlesTable extends Table
489489
490490
<a id="table-locator-usage"></a>
491491

492-
## Using the TableLocator<span id="table-registry-usage"></span>
492+
<a id="table-registry-usage"></a>
493+
494+
## Using the TableLocator
493495

494496
`class` Cake\\ORM\\**TableLocator**
495497

0 commit comments

Comments
 (0)