Skip to content

Commit 3653d1d

Browse files
committed
no-emphasis-as-heading
1 parent 789a71e commit 3653d1d

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

.markdownlint-cli2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ config:
2121
link-fragments: true
2222
no-alt-text: true
2323
single-trailing-newline: true
24-
# no-emphasis-as-heading: true
24+
no-emphasis-as-heading: true
2525
no-space-in-code: true
2626
no-space-in-links: true
2727
fenced-code-language: true

docs/administration/admin_panel/roles_admin_panel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To give users an access to your website you need to assign them roles in the **A
1010

1111
Each role consists of:
1212

13-
**Policies**
13+
## Policies
1414

1515
![Policies](admin_panel_policies.png "Policies")
1616

@@ -27,7 +27,7 @@ See [example use case](permission_use_cases.md#restrict-editing-to-part-of-the-t
2727

2828
For more information, see [Limitation reference](limitation_reference.md).
2929

30-
**Assignments**
30+
## Assignments
3131

3232
![Assignments](admin_panel_assignments.png "Assignments")
3333

docs/api/rest_api/rest_api_authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ For details, see [RFC 2617](https://datatracker.ietf.org/doc/html/rfc2617).
353353
Most HTTP client libraries and REST libraries support this method.
354354
[Creating content with binary attachments](rest_requests.md#creating-content-with-binary-attachments) is an example of using basic authentication with [cURL](https://www.php.net/manual/en/book.curl.php) and its `CURLOPT_USERPWD`.
355355

356-
**Raw HTTP request with basic authentication**
356+
See the following raw HTTP request with basic authentication example:
357357

358358
```http
359359
GET / HTTP/1.1

docs/content_management/images/images.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,19 +168,19 @@ If there is no configuration assigned to the `binary_handler`, the placeholder g
168168

169169
#### Configuration examples
170170

171-
**Example 1 - placeholders with basic information about original image**
171+
##### Example 1 - placeholders with basic information about original image
172172

173173
```yaml
174174
[[= include_file('code_samples/back_office/images/config/packages/images_basic.yaml') =]]
175175
```
176176

177-
**Example 2 - placeholders from remote source**
177+
##### Example 2 - placeholders from remote source
178178

179179
```yaml
180180
[[= include_file('code_samples/back_office/images/config/packages/images_remote.yaml') =]]
181181
```
182182

183-
**Example 3 - placeholders from live version of a site**
183+
##### Example 3 - placeholders from live version of a site
184184

185185
```yaml
186186
[[= include_file('code_samples/back_office/images/config/packages/images_live.yaml') =]]

docs/infrastructure_and_maintenance/cache/persistence_cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Use of Redis as shared cache back end is a requirement for use in clustering set
5454
For an overview of this feature, see [Clustering](clustering.md).
5555
Filesystem adapters, for example, are **not** intended to be used over a shared filesystem.
5656

57-
**Cache service**
57+
### Cache service
5858

5959
The underlying cache system is exposed as an `ibexa.cache_pool` service, and can be reused by any other service as described in the [Using Cache service](#using-cache-service) section.
6060

docs/search/search_engines/elasticsearch/elasticsearch_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Thanks to this mechanism, it's able to achieve fast response.
1717
For a detailed description of advanced settings that you might require in a specific production environment, see the documentation provided by Elastic.
1818
Start with the [Set up Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/8.19/setup.html) section.
1919

20-
**Prerequisite**
20+
## Prerequisite
2121

2222
To proceed you need to be familiar with how indexing, filtering and queries work.
2323

docs/update_and_migration/migrate_to_ibexa_dxp/migrating_from_ez_publish_platform.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -410,9 +410,11 @@ Once you have fixed all the dump files in `ezxmltext-export/`, you may skip the
410410

411411
`php -d memory_limit=1536M bin/console ezxmltext:import-xml --export-dir=ezxmltext-export -v`
412412

413+
##### Typical problems
414+
413415
Typical problems that needs manual fixing:
414416

415-
**Duplicate XHTML IDs**
417+
###### Duplicate XHTML ID
416418

417419
XHTML IDs needs to be unique. The following `ezxmltext` results in a warning:
418420

@@ -428,7 +430,7 @@ XHTML IDs needs to be unique. The following `ezxmltext` results in a warning:
428430
The conversion tool replaces the duplicate id (`inv5`) with a random value. If you need the ID value to match your CSS, you need to change it manually.
429431
The conversion tool also complains about IDs which contain invalid characters.
430432

431-
**Links with non-existing `object_remote_id` or `node_remote_id`.**
433+
###### Links with non-existing `object_remote_id` or `node_remote_id`
432434

433435
In `ezxmltext` you may have links which refer to other objects by their remote ID. This isn't supported in `richtext`, so the conversion tool must look up such remote IDs and replace them with the `object_id` or `node_id`. If the conversion tool cannot find the object by its remote id, it issues a warning about it.
434436

@@ -440,15 +442,15 @@ In older eZ Publish databases you may also have invalid links due to lack of ref
440442

441443
When the conversion tool detects links with no reference it issues a warning and rewrite the URL to point to current page (`href="#"`).
442444

443-
**`<literal>`**
445+
###### `<literal>`
444446

445447
The `<literal>` tag isn't yet supported in eZ Platform.
446448

447449
When you're ready to migrate your eZ Publish XmlText content to the eZ Platform RichText format and start using pure eZ Platform setup, start the conversion script without the `--dry-run` option. Execute the following from &lt;new-ez-root&gt;:
448450

449451
`php -d memory_limit=1536M bin/console ezxmltext:convert-to-richtext --export-dir=ezxmltext-export --export-dir-filter=notice,warning,error --concurrency 4 -v`
450452

451-
**Custom tags and attributes**
453+
###### Custom tags and attributes
452454

453455
eZ Platform now supports custom tags, including inline custom tags, and limited use of custom tag attributes.
454456
After migrating to RichText, you need to adapt your custom tag config for eZ Platform and rewrite the custom tags in Twig.
@@ -574,18 +576,16 @@ new EzSystems\EzFlowMigrationToolkitBundle\EzSystemsEzFlowMigrationToolkitBundle
574576
bin/console cache:clear
575577
```
576578

577-
**4.** Run the script with the following parameters:
579+
**4.** Run the script below with the following parameters:
578580

579581
- absolute path of your legacy application
580582
- list of .ini files which define your legacy blocks
581583

582-
**Script command**
583-
584584
``` bash
585585
bin/console ezflow:migrate <legacy path> —ini=<block definitions> [—ini=<another block definition> ...]
586586
```
587587

588-
**Example of the migration script command**
588+
Example usage:
589589

590590
``` bash
591591
bin/console ezflow:migrate /var/www/legacy.application.com/ —ini=extension/myapplication/settings/block.ini.append.php

0 commit comments

Comments
 (0)