Skip to content

Commit 8535c22

Browse files
committed
no-emphasis-as-heading
1 parent 99b8aa4 commit 8535c22

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

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
@@ -427,9 +427,11 @@ Once you have fixed all the dump files in `ezxmltext-export/`, you may skip the
427427

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

430+
##### Typical problems
431+
430432
Typical problems that needs manual fixing:
431433

432-
**Duplicate XHTML IDs**
434+
###### Duplicate XHTML ID
433435

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

@@ -445,7 +447,7 @@ XHTML IDs needs to be unique. The following `ezxmltext` results in a warning:
445447
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.
446448
The conversion tool also complains about IDs which contain invalid characters.
447449

448-
**Links with non-existing `object_remote_id` or `node_remote_id`.**
450+
###### Links with non-existing `object_remote_id` or `node_remote_id`
449451

450452
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.
451453

@@ -457,15 +459,15 @@ In older eZ Publish databases you may also have invalid links due to lack of ref
457459

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

460-
**`<literal>`**
462+
###### `<literal>`
461463

462464
The `<literal>` tag isn't yet supported in eZ Platform.
463465

464466
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;:
465467

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

468-
**Custom tags and attributes**
470+
###### Custom tags and attributes
469471

470472
eZ Platform now supports custom tags, including inline custom tags, and limited use of custom tag attributes.
471473
After migrating to RichText, you need to adapt your custom tag config for eZ Platform and rewrite the custom tags in Twig.
@@ -593,18 +595,16 @@ new EzSystems\EzFlowMigrationToolkitBundle\EzSystemsEzFlowMigrationToolkitBundle
593595
bin/console cache:clear
594596
```
595597

596-
**4.** Run the script with the following parameters:
598+
**4.** Run the script below with the following parameters:
597599

598600
- absolute path of your legacy application
599601
- list of .ini files which define your legacy blocks
600602

601-
**Script command**
602-
603603
``` bash
604604
bin/console ezflow:migrate <legacy path> —ini=<block definitions> [—ini=<another block definition> ...]
605605
```
606606

607-
**Example of the migration script command**
607+
Example usage:
608608

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

0 commit comments

Comments
 (0)