Skip to content

Commit b565655

Browse files
committed
Markdownlint: no-trailing-spaces
1 parent 0b456b7 commit b565655

61 files changed

Lines changed: 140 additions & 140 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.markdownlint-cli2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ config:
3939
# ul-style: dash
4040
# ul-indent:
4141
# indent: 4
42-
# no-trailing-spaces: true
42+
no-trailing-spaces: true
4343
no-multiple-blanks: true
4444
commands-show-output: true
4545

docs/administration/back_office/integrated_help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Integrated help is contextual, therefore, apart from user documentation, release
1515

1616
## Install package
1717

18-
Integrated help is optional.
18+
Integrated help is optional.
1919
To enable it, run the following command:
2020

2121
```bash

docs/administration/back_office/subitems_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It provides an interface for listing the sub-items of any location.
1010

1111
## Create custom sub-items list view
1212

13-
You can extend the Sub-items List module to replace an existing view or add your own.
13+
You can extend the Sub-items List module to replace an existing view or add your own.
1414
The example below adds a new timeline view to highlight the modification date.
1515

1616
![Sub-items List module using the new Timeline view](img/subitems/timeline_view.png "Sub-items List module using the new Timeline view")

docs/ai_actions/extend_ai_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Both `ActionContext` and `RuntimeContext` are passed to the Action Handler (an o
3232

3333
You can pass the Action Handler directly to the `ActionServiceInterface::execute()` method, which overrides all the other ways of selecting the Action Handler.
3434
You can also specify the Action Handler by including it in the provided [Action Configuration](#action-configurations).
35-
In other cases, the Action Handler is selected automatically.
35+
In other cases, the Action Handler is selected automatically.
3636
You can affect this choice by creating your own class implementing the [ActionHandlerResolverInterface](/api/php_api/php_api_reference/classes/Ibexa-Contracts-ConnectorAi-Action-ActionHandlerResolverInterface.html) or by listening to the [ResolveActionHandlerEvent](/api/php_api/php_api_reference/classes/Ibexa-Contracts-ConnectorAi-Events-ResolveActionHandlerEvent.html) Event sent by the default implementation.
3737

3838
You can influence the execution of an Action with two events:

docs/content_management/field_types/field_type_reference/field_type_reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In addition, it's possible to extend the system by creating custom types for spe
1818

1919
For general field type documentation, see [field type](field_types.md).
2020

21-
Custom field types have to be programmed in PHP.
21+
Custom field types have to be programmed in PHP.
2222
However, the built-in field types are usually enough for typical scenarios.
2323
The following table gives an overview of the supported field types that come with [[= product_name =]].
2424

docs/content_management/field_types/field_type_reference/measurementfield.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Measurement field type
22

3-
The Measurement field type represents measurement information.
3+
The Measurement field type represents measurement information.
44
It stores the unit of measure, and either a single measurement value, or a pair of top and bottom values that defines a range.
55

66
| Name | Internal name | Expected input type |
@@ -12,8 +12,8 @@ It stores the unit of measure, and either a single measurement value, or a pair
1212
### Input expectations
1313

1414
To create a value, you use a service that implements `Ibexa\Contracts\Measurement\MeasurementServiceInterface`.
15-
You must inject the service directly with [dependency injection](php_api.md#service-container).
16-
The service contains the following API endpoints:
15+
You must inject the service directly with [dependency injection](php_api.md#service-container).
16+
The service contains the following API endpoints:
1717

1818
- `buildSimpleValue` that is used to handle a single value
1919
- `buildRangeValue` that is used to handle a range
@@ -37,7 +37,7 @@ The Value class of this field type contains the following properties:
3737

3838
##### Constructor
3939

40-
The `Measurement\Value` constructor for this value object initializes a new value object with the value provided.
40+
The `Measurement\Value` constructor for this value object initializes a new value object with the value provided.
4141
As its first argument it accepts an object of `Ibexa\Contracts\Measurement\Value\ValueInterface` type.
4242

4343
Depending on the selected input type, the object resembles the following examples:

docs/content_management/forms/create_form_attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Now, the attribute value can be stored in the new Form.
106106

107107
## Create submission converter
108108

109-
The new field is based on a checkbox, so to display the submissions of this field, you can use the `BooleanFieldSubmissionConverter`.
109+
The new field is based on a checkbox, so to display the submissions of this field, you can use the `BooleanFieldSubmissionConverter`.
110110

111111
Create a `src/FormBuilder/FormSubmission/Converter/RichtextDescriptionFieldSubmissionConverter.php` file.
112112

docs/content_management/forms/work_with_forms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For information about available options, see [Gregwar/CaptchaBundle's documentat
4444
4545
## Form submission purging
4646
47-
You can purge all submissions of a given form.
47+
You can purge all submissions of a given form.
4848
To do this, run the following command, where `form-id` stands for Content ID of the form for which you want to purge data:
4949

5050
```bash

docs/content_management/images/add_image_asset_from_dam.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ In this example, the search only uses the main text input.
157157
The tab and its corresponding panel are a service created by combining existing components, like in the case of other [back office tabs](back_office_tabs.md).
158158

159159
The `commons_search_tab` service uses the `GenericSearchTab` class as a base, and the `GenericSearchType` form for search input.
160-
It is linked to the `commons` DAM source and uses the identifier `commons`.
160+
It is linked to the `commons` DAM source and uses the identifier `commons`.
161161
The DAM search tab is registered in the `connector-dam-search` [tab group](back_office_tabs.md#tab-groups) using the `ibexa.admin_ui.tab` tag.
162162

163163
```yaml

docs/content_management/images/images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ php bin/console liip:imagine:cache:remove
5151
With [image variations](image_variations.md) (image aliases) you can define and use different versions of the same image.
5252
You generate variations based on [filters](image_variations.md#available-variation-filters) that modify aspects such as size and proportions, quality or effects.
5353

54-
Image variations are generated with [LiipImagineBundle](https://github.com/liip/LiipImagineBundle), by using the underlying [Imagine library](https://imagine.readthedocs.io/en/latest/). 
55-
The LiipImagineBundle bundle supports GD (default), Imagick or Gmagick PHP extensions, and enables you to define flexible filters in PHP. 
54+
Image variations are generated with [LiipImagineBundle](https://github.com/liip/LiipImagineBundle), by using the underlying [Imagine library](https://imagine.readthedocs.io/en/latest/).
55+
The LiipImagineBundle bundle supports GD (default), Imagick or Gmagick PHP extensions, and enables you to define flexible filters in PHP.
5656
Image files are stored by using the `IOService,` and are completely independent from the Image field type.
5757
They're generated only once and cleared on demand, for example, on content removal).
5858

0 commit comments

Comments
 (0)