Skip to content

Commit 73c4158

Browse files
committed
Fix markdown
1 parent 6d8a5c1 commit 73c4158

10 files changed

+79
-79
lines changed

src/pages/module-reference/module-admin-adobe-ims.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ In Admin Adobe Ims module was defined path where certificate has to be downloade
205205
By default, in config.xml, these value for production.
206206
For testing reasons, developers can override this value, for example in env.php file like this:
207207

208-
```
208+
```php
209209
'system' => [
210210
'default' => [
211211
'adobe_ims' => [

src/pages/module-reference/module-adobe-commerce-events-generator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: README.md contents of the module from the source code
77

88
This module defines the following CLI command:
99

10-
```
10+
```shell
1111
bin/magento events:generate:module
1212
```
1313

src/pages/module-reference/module-catalog.md

Lines changed: 56 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description: README.md contents of the module from the source code
44
---
55

66
# Magento_Catalog
7+
78
Magento_Catalog module functionality is represented by the following sub-systems:
89

910
- Products Management. It includes CRUD operation of product, product media, product attributes, etc...
@@ -20,60 +21,59 @@ Catalog module provides API filtering that allows to limit product selection wit
2021
## Observer
2122

2223
This module observes the following events:
23-
`etc/events.xml`
24-
`magento_catalog_api_data_productinterface_save_before` event in
25-
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
26-
`magento_catalog_api_data_productinterface_save_after` event in
27-
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
28-
`magento_catalog_api_data_productinterface_delete_before` event in
29-
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
30-
`magento_catalog_api_data_productinterface_delete_after` event in
31-
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
32-
`magento_catalog_api_data_productinterface_load_after` event in
33-
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
34-
`magento_catalog_api_data_categoryinterface_save_before` event in
35-
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
36-
`magento_catalog_api_data_categoryinterface_save_after` event in
37-
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
38-
`magento_catalog_api_data_categoryinterface_save_after` event in
39-
`Magento\Catalog\Observer\InvalidateCacheOnCategoryDesignChange` file.
40-
`magento_catalog_api_data_categoryinterface_delete_before` event in
41-
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
42-
`magento_catalog_api_data_categoryinterface_delete_after` event in
43-
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
44-
`magento_catalog_api_data_categoryinterface_load_after` event in
45-
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
46-
`magento_catalog_api_data_categorytreeinterface_save_before` event in
47-
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
48-
`magento_catalog_api_data_categorytreeinterface_save_after` event in
49-
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
50-
`magento_catalog_api_data_categorytreeinterface_delete_before` event in
51-
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
52-
`magento_catalog_api_data_categorytreeinterface_delete_after` event in
53-
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
54-
`magento_catalog_api_data_categorytreeinterface_load_after` event in
55-
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
56-
`admin_system_config_changed_section_catalog` event in
57-
`Magento\Catalog\Observer\SwitchPriceAttributeScopeOnConfigChange` file.
58-
`catalog_product_save_before` event in
59-
`Magento\Catalog\Observer\SetSpecialPriceStartDate` file.
60-
`store_save_after` event in
61-
`Magento\Catalog\Observer\SynchronizeWebsiteAttributesOnStoreChange` file.
62-
`catalog_product_save_commit_after` event in
63-
`Magento\Catalog\Observer\ImageResizeAfterProductSave` file.
64-
`catalog_category_prepare_save` event in
65-
`Magento\Catalog\Observer\CategoryDesignAuthorization` file.
6624

67-
`/etc/frontend/events.xml`
68-
`customer_login` event in
69-
`Magento\Catalog\Observer\Compare\BindCustomerLoginObserver` file.
70-
`customer_logout` event in
71-
`Magento\Catalog\Observer\Compare\BindCustomerLogoutObserver` file.
72-
73-
`/etc/adminhtml/events.xml`
74-
`cms_wysiwyg_images_static_urls_allowed` event in
75-
`Magento\Catalog\Observer\CatalogCheckIsUsingStaticUrlsAllowedObserver` file.
76-
`catalog_category_change_products` event in
77-
`Magento\Catalog\Observer\CategoryProductIndexer` file.
78-
`category_move` event in
79-
`Magento\Catalog\Observer\FlushCategoryPagesCache`
25+
- `etc/events.xml`
26+
- `magento_catalog_api_data_productinterface_save_before` event in
27+
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
28+
- `magento_catalog_api_data_productinterface_save_after` event in
29+
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
30+
- `magento_catalog_api_data_productinterface_delete_before` event in
31+
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
32+
- `magento_catalog_api_data_productinterface_delete_after` event in
33+
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
34+
- `magento_catalog_api_data_productinterface_load_after` event in
35+
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
36+
- `magento_catalog_api_data_categoryinterface_save_before` event in
37+
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
38+
- `magento_catalog_api_data_categoryinterface_save_after` event in
39+
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
40+
- `magento_catalog_api_data_categoryinterface_save_after` event in
41+
`Magento\Catalog\Observer\InvalidateCacheOnCategoryDesignChange` file.
42+
- `magento_catalog_api_data_categoryinterface_delete_before` event in
43+
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
44+
- `magento_catalog_api_data_categoryinterface_delete_after` event in
45+
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
46+
- `magento_catalog_api_data_categoryinterface_load_after` event in
47+
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
48+
- `magento_catalog_api_data_categorytreeinterface_save_before` event in
49+
`Magento\Framework\EntityManager\Observer\BeforeEntitySave` file.
50+
- `magento_catalog_api_data_categorytreeinterface_save_after` event in
51+
`Magento\Framework\EntityManager\Observer\AfterEntitySave` file.
52+
- `magento_catalog_api_data_categorytreeinterface_delete_before` event in
53+
`Magento\Framework\EntityManager\Observer\BeforeEntityDelete` file.
54+
- `magento_catalog_api_data_categorytreeinterface_delete_after` event in
55+
`Magento\Framework\EntityManager\Observer\AfterEntityDelete` file.
56+
- `magento_catalog_api_data_categorytreeinterface_load_after` event in
57+
`Magento\Framework\EntityManager\Observer\AfterEntityLoad` file.
58+
- `admin_system_config_changed_section_catalog` event in
59+
`Magento\Catalog\Observer\SwitchPriceAttributeScopeOnConfigChange` file.
60+
- `catalog_product_save_before` event in
61+
`Magento\Catalog\Observer\SetSpecialPriceStartDate` file.
62+
- `store_save_after` event in
63+
`Magento\Catalog\Observer\SynchronizeWebsiteAttributesOnStoreChange` file.
64+
- `catalog_product_save_commit_after` event in
65+
`Magento\Catalog\Observer\ImageResizeAfterProductSave` file.
66+
- `catalog_category_prepare_save` event in
67+
`Magento\Catalog\Observer\CategoryDesignAuthorization` file.
68+
- `/etc/frontend/events.xml`
69+
- `customer_login` event in
70+
`Magento\Catalog\Observer\Compare\BindCustomerLoginObserver` file.
71+
- `customer_logout` event in
72+
`Magento\Catalog\Observer\Compare\BindCustomerLogoutObserver` file.
73+
- `/etc/adminhtml/events.xml`
74+
- `cms_wysiwyg_images_static_urls_allowed` event in
75+
`Magento\Catalog\Observer\CatalogCheckIsUsingStaticUrlsAllowedObserver` file.
76+
- `catalog_category_change_products` event in
77+
`Magento\Catalog\Observer\CategoryProductIndexer` file.
78+
- `category_move` event in
79+
`Magento\Catalog\Observer\FlushCategoryPagesCache`

src/pages/module-reference/module-msrp.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: README.md contents of the module from the source code
55

66
# Magento_Msrp module
77

8-
The **Magento_Msrp** module is responsible for Manufacturers Suggested Retail Price functionality.
8+
The **Magento_Msrp** module is responsible for Manufacturer's Suggested Retail Price functionality.
99
A current module provides base functional for msrp pricing rendering, configuration and calculation.
1010

1111
## Installation
@@ -47,17 +47,17 @@ For information about a typical file structure of a module in Magento 2,
4747

4848
For example:
4949

50-
```
51-
<type name="Magento\Msrp\Pricing\MsrpPriceCalculator">
52-
<arguments>
53-
<argument name="msrpPriceCalculators" xsi:type="array">
54-
<item name="configurable" xsi:type="array">
55-
<item name="productType" xsi:type="const">Magento\ConfigurableProduct\Model\Product\Type\Configurable::TYPE_CODE</item>
56-
<item name="priceCalculator" xsi:type="object">Magento\MsrpConfigurableProduct\Pricing\MsrpPriceCalculator</item>
57-
</item>
58-
</argument>
59-
</arguments>
60-
</type>
50+
```xml
51+
<type name="Magento\Msrp\Pricing\MsrpPriceCalculator">
52+
<arguments>
53+
<argument name="msrpPriceCalculators" xsi:type="array">
54+
<item name="configurable" xsi:type="array">
55+
<item name="productType" xsi:type="const">Magento\ConfigurableProduct\Model\Product\Type\Configurable::TYPE_CODE</item>
56+
<item name="priceCalculator" xsi:type="object">Magento\MsrpConfigurableProduct\Pricing\MsrpPriceCalculator</item>
57+
</item>
58+
</argument>
59+
</arguments>
60+
</type>
6161
```
6262

6363
More information about [type configuration](https://devdocs.magento.com/guides/v2.4/extension-dev-guide/build/di-xml-file.html).

src/pages/module-reference/module-multishipping.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ For information about a typical file structure of a module in Magento 2,
2222
Developers can interact with the module and change behaviour using type configuration feature.
2323

2424
Namely, we can change `paymentSpecification` for `Magento\Multishipping\Block\Checkout\Billing` and `Magento\Multishipping\Model\Checkout\Type\Multishipping` classes.
25-
As result, we will get changed behaviour, new logic or something what our business need.
25+
As result, we will get changed behavior, new logic or something what our business need.
2626

2727
For example:
2828

29-
```
29+
```xml
3030
<type name="Magento\Multishipping\Model\Checkout\Type\Multishipping">
3131
<arguments>
3232
<argument name="paymentSpecification" xsi:type="object">multishippingPaymentSpecification</argument>
@@ -141,4 +141,4 @@ Module introduces the new pages:
141141

142142
More information about [layout types](https://devdocs.magento.com/guides/v2.4/frontend-dev-guide/layouts/layout-types.html).
143143

144-
For information about significant changes in patch releases, see [2.3.x Release information](http://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html).
144+
For information about significant changes in patch releases, see [Release information](https://experienceleague.adobe.com/docs/commerce-operations/release/notes/overview.html).

src/pages/module-reference/module-mysql-mq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For information about a module installation in Magento 2, see [Enable or disable
2323

2424
## Additional information
2525

26-
For information about significant changes in patch releases, see [2.3.x Release information](http://devdocs.magento.com/guides/v2.3/release-notes/bk-release-notes.html).
26+
For information about significant changes in patch releases, see [Release information](https://experienceleague.adobe.com/docs/commerce-operations/release/notes/overview.html).
2727

2828
### cron options
2929

src/pages/module-reference/module-negotiable-quote-graph-ql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ title: NegotiableQuoteGraphQl
33
description: README.md contents of the module from the source code
44
---
55

6-
# Negotiable Quote GraphQL #
6+
# Negotiable Quote GraphQL

src/pages/module-reference/module-page-builder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This setting determines the `is_pagebuilder_enabled` configuration value.
2525

2626
You can disable the PageBuilder module for a specific field by adding the following entry to a field configuration in an XML configuration file:
2727

28-
```
28+
```xml
2929
<item name="wysiwygConfigData" xsi:type="array">
3030
<item name="is_pagebuilder_enabled" xsi:type="boolean">false</item>
3131
</item>
@@ -35,7 +35,7 @@ You can disable the PageBuilder module for a specific field by adding the follow
3535

3636
The following example disables the PageBuilder editor for the content field.
3737

38-
```
38+
```xml
3939
<form xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
4040
<fieldset name="content" sortOrder="10">
4141
<field name="content" formElement="wysiwyg">

src/pages/module-reference/module-sample-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To deploy sample data from the Magento composer repository without Magento CLI:
2929

3030
1. Specify sample data packages in the `require` section of the root `composer.json` file, for example:
3131

32-
```
32+
```json
3333
{
3434
"require": {
3535
...

src/pages/module-reference/module-securitytxt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Magento_Securitytxt module provides the following functionality:
1919

2020
A valid security.txt file could look like the following example:
2121

22-
```
22+
```txt
2323
Contact: mailto:security@example.com
2424
Contact: tel:+1-201-555-0123
2525
Encryption: https://example.com/pgp.asc

0 commit comments

Comments
 (0)