Skip to content

Commit 965f3a9

Browse files
committed
Markdownlint: added no-space-in-code
1 parent 6f5d470 commit 965f3a9

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.markdownlint-cli2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ config:
2222
# no-alt-text: true
2323
# single-trailing-newline: true
2424
# no-emphasis-as-heading: true
25-
# no-space-in-code: true
25+
no-space-in-code: true
2626
# no-space-in-links: true
2727
# fenced-code-language: true
2828
# first-line-heading: true

docs/api/event_reference/discounts_events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following events are dispatched when rendering each step of the discount wiz
4747
|[`CreateFormDataEvent`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-Event-Step-CreateFormDataEvent.html)| `ibexa.discounts.form_mapper.<step_identifier>.create_form_data`|
4848
|[`MapCreateDataToStructEvent`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-Event-Step-MapCreateDataToStructEvent.html)|`ibexa.discounts.form_mapper.<step_identifier>.map_create_data_to_struct`|
4949
|[`MapDiscountToFormDataEvent`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-Event-Step-MapDiscountToFormDataEvent.html)| `ibexa.discounts.form_mapper.<step_identifier>.map_discount_to_form_data`|
50-
|[`MapUpdateDataToStructEvent`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-Event-Step-MapUpdateDataToStructEvent.html)|`ibexa.discounts.form_mapper.<step_identifier>.map_update_data_to_struct `|
50+
|[`MapUpdateDataToStructEvent`](/api/php_api/php_api_reference/classes/Ibexa-Contracts-Discounts-Event-Step-MapUpdateDataToStructEvent.html)|`ibexa.discounts.form_mapper.<step_identifier>.map_update_data_to_struct`|
5151

5252
The event classes are shared between steps, but they are dispatched with different names.
5353
Each step form mapper dispatches its own set of events.

docs/content_management/field_types/field_type_reference/authorfield.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This field type allows the storage and retrieval of one or more authors. For eac
1414

1515
| Attribute | Type | Description | Example |
1616
|-----------|------------------------------------------|------------------|-----------|
17-
| `authors` | `\Ibexa\Core\FieldType\Author\Author[] ` | List of authors. | See below |
17+
| `authors` | `\Ibexa\Core\FieldType\Author\Author[]` | List of authors. | See below |
1818

1919
Example:
2020

docs/content_management/rich_text/extend_online_editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ For a full list of standard buttons, see the RichText module's [configuration fi
386386
Regular CKEditor plugins can be added to the Online Editor.
387387
This procedure is illustrated with the addition of the [Special characters plugin](https://ckeditor.com/docs/ckeditor5/latest/features/special-characters.html).
388388

389-
You can install a CKEditor plugin locally by using `yarn add ` or `npm install`, and deploy it by committing the `yarn.lock` file.
389+
You can install a CKEditor plugin locally by using `yarn add` or `npm install`, and deploy it by committing the `yarn.lock` file.
390390
A local installation looks like:
391391

392392
```bash

docs/content_management/workflow/workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ However, during the publish action, the sent form is validated in the service.
165165
Therefore, if there are any errors in the form, you return to the edit page but errors aren't triggered, which can be confusing when you have two or more tabs.
166166

167167
To enable form validation in UI before sending it to the next stage of the workflow, add `validate: true` to the transitions of the stage.
168-
In the example below the form is validated in two stages:` to_legal` and `done`:
168+
In the example below the form is validated in two stages: `to_legal` and `done`:
169169

170170
``` yaml hl_lines="15 28"
171171
[[= include_file('code_samples/workflow/custom_workflow/config/packages/workflows.yaml', 23, 43) =]][[= include_file('code_samples/workflow/custom_workflow/config/packages/workflows.yaml', 55, 63) =]]

docs/personalization/tracking_with_ibexa-tracker.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To use this mechanism on your pages, copy the code snippet below, and replace:
2626
- `<USER_ID>` with an empty string for cookie based anonymous user or with the value generated by your user identifier system for logged-in user. In case user activity should not be tracked, 'not_defined' value should be used to still have an event stored without a link to the user.
2727

2828
All identifiers can be any form of string.
29-
Paste this snippet into your website template page so that it appears before the closing `</head>` tag.
29+
Paste this snippet into your website template page so that it appears before the closing `</head>` tag.
3030

3131
``` js
3232
<script type="text/javascript">
@@ -48,9 +48,9 @@ Paste this snippet into your website template page so that it appears before the
4848

4949
## Asynchronous syntax
5050

51-
The `_ycq` object is what makes the asynchronous syntax possible.
52-
It acts as a queue, which is a "first-in, first-out" (FIFO) data structure that collects API calls until `ibexa-tracker.js` is ready to run them.
53-
To add to the queue, use the `_ycq.push` method.
51+
The `_ycq` object is what makes the asynchronous syntax possible.
52+
It acts as a queue, which is a "first-in, first-out" (FIFO) data structure that collects API calls until `ibexa-tracker.js` is ready to run them.
53+
To add to the queue, use the `_ycq.push` method.
5454

5555
To push an API call into the queue, you must convert it from the traditional JavaScript syntax to a command array.
5656
Command arrays are JavaScript arrays that conform to a certain format.
@@ -60,7 +60,7 @@ These can be any JavaScript value.
6060

6161
## Tracking code
6262

63-
The `_ycq` global object can be used directly for asynchronous page tracking with the `push(...)` method. 
63+
The `_ycq` global object can be used directly for asynchronous page tracking with the `push(...)` method. 
6464

6565
### `_ycq` object methods
6666

@@ -84,9 +84,9 @@ _ycq.push(['_trackEvent', '1', 'click', '10', '']);
8484

8585
| Object | Description | Example |
8686
| --------------- | ------------- | ------ |
87-
| `_setMandator ` | - Executed with one additional parameter: `MandatorId` | `_ycq.push (['_setMandator' , '<YOUR_MANDATOR_ID>']);` |
87+
| `_setMandator` | - Executed with one additional parameter: `MandatorId` | `_ycq.push(['_setMandator' , '<YOUR_MANDATOR_ID>']);` |
8888
| `_trackEvent` | - Executed with four additional parameters: `ItemType`, `EventType`, `ItemId`, `UserId`.<br /> - `EventType` can be any of the [described types]([[= user_doc =]]/personalization/event_types/) | capturing an event: `_ycq.push(['_trackEvent', '1', 'buy', '10', '']);` |
89-
| `_trackTimedEvent` | - Executed with five additional parameters: `ItemType`, `EventType`, `ItemId`, `Timeout`, `UserId`.<br /> - `EventType` can be any of the [described types]([[= user_doc =]]/personalization/event_types/).<br /> - `Timeout` can be any integer greater than 0 representing time in ms | consume event sent after 20s: `_ycq.push(['_trackTimedEvent', '1', 'consume', '10', '20000', '']);` |
89+
| `_trackTimedEvent` | - Executed with five additional parameters:`ItemType`, `EventType`, `ItemId`, `Timeout`, `UserId`.<br /> - `EventType` can be any of the [described types]([[= user_doc =]]/personalization/event_types/).<br /> - `Timeout` can be any integer greater than 0 representing time in ms | consume event sent after 20s: `_ycq.push(['_trackTimedEvent', '1', 'consume', '10', '20000', '']);` |
9090
| `_login` | - Executed with two additional parameters: anonymous userId, pseudonymous userId.<br /> - It is to be triggered when a user logs in and the tracking identity is changed.<br /> | - |
9191
| `ycreco=true` | - If you want to send a click recommended event you can append the following parameter to the recommended item URLs: | [https://mydomain.com/mypage.html?ycreco=true](https://mydomain.com/mypage.html?ycreco=true) or <br />[https://mydomain.com/mypage.html?myparameter=x&ycreco=true](https://mydomain.com/mypage.html?myparameter=x&ycreco=true) |
9292

@@ -99,4 +99,4 @@ For example, the following button generates an event when it's clicked:
9999
<button onclick = "_ycq.push(['_trackEvent', '2', 'click', 'itemId1', ''])"/><button>
100100
```
101101

102-
Even if this button is clicked before the browser has finished loading `ibexa-tracker.js`, the event is captured and eventually executed.
102+
Even if this button is clicked before the browser has finished loading `ibexa-tracker.js`, the event is captured and eventually executed.

docs/release_notes/ez_platform_v1.7.0_lts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Community members are more than welcome to contribute to the translation process
5353
-  QueryType's now support using alias when being used as service so you can define several services with same  QueryType class
5454
-  Example: Generic location child QueryType being reused several times for specific services for article or blog post listings 
5555
- API:
56-
- New method:` Location->getSortClauses()` to get Sort Clauses based on what kind of sorting has been set on the Location
56+
- New method: `Location->getSortClauses()` to get Sort Clauses based on what kind of sorting has been set on the Location
5757
- Add Content Version archives limit by configuration & enforce on publish
5858
- Debug:
5959
- ez-support-tools:dump-info command now able to dump system info in several formats, and default is now json

0 commit comments

Comments
 (0)