Skip to content

Commit 582d478

Browse files
authored
Prevent line break after code-styled list item (#10668)
1 parent 799555d commit 582d478

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

localization.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,18 @@ if (App::isLocale('en')) {
9090
<a name="pluralization-language"></a>
9191
### Pluralization Language
9292

93+
<style>
94+
.code-list-no-flex-break code {
95+
display: contents !important;
96+
}
97+
</style>
98+
99+
<div class="code-list-no-flex-break">
100+
93101
You may instruct Laravel's "pluralizer", which is used by Eloquent and other portions of the framework to convert singular strings to plural strings, to use a language other than English. This may be accomplished by invoking the `useLanguage` method within the `boot` method of one of your application's service providers. The pluralizer's currently supported languages are: `french`, `norwegian-bokmal`, `portuguese`, `spanish`, and `turkish`:
94102

103+
</div>
104+
95105
```php
96106
use Illuminate\Support\Pluralizer;
97107

0 commit comments

Comments
 (0)