Update Markdown lint allowing the same headings if they're not siblings (#51438)
* Set markdown rule about Multiple headings to check siblings only * Change the doc to have same headings but not siblings as example * Add changelog * Update docs manifest
This commit is contained in:
parent
8b7050f9b1
commit
e354295387
|
@ -3,7 +3,7 @@
|
||||||
"MD003": { "style": "atx" },
|
"MD003": { "style": "atx" },
|
||||||
"MD007": { "indent": 4 },
|
"MD007": { "indent": 4 },
|
||||||
"MD013": { "line_length": 9999 },
|
"MD013": { "line_length": 9999 },
|
||||||
"MD024": { "allow_different_nesting": true },
|
"MD024": { "siblings_only": true },
|
||||||
"MD033": { "allowed_elements": [ "video" ] },
|
"MD033": { "allowed_elements": [ "video" ] },
|
||||||
"no-hard-tabs": false,
|
"no-hard-tabs": false,
|
||||||
"whitespace": false
|
"whitespace": false
|
||||||
|
|
|
@ -1059,7 +1059,7 @@
|
||||||
"menu_title": "DOM Events",
|
"menu_title": "DOM Events",
|
||||||
"tags": "how-to",
|
"tags": "how-to",
|
||||||
"edit_url": "https://github.com/woocommerce/woocommerce/edit/trunk/docs/product-collection-block/dom-events.md",
|
"edit_url": "https://github.com/woocommerce/woocommerce/edit/trunk/docs/product-collection-block/dom-events.md",
|
||||||
"hash": "59a4b49eb146774d33229bc60ab7d8f74381493f6e7089ca8f0e2d0eb433a7a4",
|
"hash": "85cffe1cc273621f16f7362b5efe28ede9689cee0a6e87d0d426014bacc24b05",
|
||||||
"url": "https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/docs/product-collection-block/dom-events.md",
|
"url": "https://raw.githubusercontent.com/woocommerce/woocommerce/trunk/docs/product-collection-block/dom-events.md",
|
||||||
"id": "c8d247b91472740075871e6b57a9583d893ac650"
|
"id": "c8d247b91472740075871e6b57a9583d893ac650"
|
||||||
}
|
}
|
||||||
|
@ -1804,5 +1804,5 @@
|
||||||
"categories": []
|
"categories": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"hash": "dfe48a2a48d383c1f4e5b5bb4258d369dd4e80ac8582462b16bbfedd879cb0bf"
|
"hash": "3cad7f812ae15abd4936a536cf56db63b0f1b549e26eeb3427fe45989647d58c"
|
||||||
}
|
}
|
|
@ -10,13 +10,13 @@ tags: how-to
|
||||||
|
|
||||||
This event is triggered when Product Collection block was rendered or re-rendered (e.g. due to page change).
|
This event is triggered when Product Collection block was rendered or re-rendered (e.g. due to page change).
|
||||||
|
|
||||||
### `wc-blocks_product_list_rendered` - `detail` parameters
|
### `detail` parameters
|
||||||
|
|
||||||
| Parameter | Type | Default value | Description |
|
| Parameter | Type | Default value | Description |
|
||||||
| ------------------ | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ------------------ | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `collection` | string | `undefined` | Collection type. It's `undefined` for "create your own" collections as the type is not specified. For other Core collections it can be one of type: `woocommerce/product-collection/best-sellers`, `woocommerce/product-collection/featured`, `woocommerce/product-collection/new-arrivals`, `woocommerce/product-collection/on-sale`, `woocommerce/product-collection/top-rated`. For custom collections it will hold their name. |
|
| `collection` | string | `undefined` | Collection type. It's `undefined` for "create your own" collections as the type is not specified. For other Core collections it can be one of type: `woocommerce/product-collection/best-sellers`, `woocommerce/product-collection/featured`, `woocommerce/product-collection/new-arrivals`, `woocommerce/product-collection/on-sale`, `woocommerce/product-collection/top-rated`. For custom collections it will hold their name. |
|
||||||
|
|
||||||
### `wc-blocks_product_list_rendered` - Example usage
|
### Example usage
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
window.document.addEventListener(
|
window.document.addEventListener(
|
||||||
|
@ -32,14 +32,14 @@ window.document.addEventListener(
|
||||||
|
|
||||||
This event is triggered when some blocks are clicked in order to view product (redirect to product page).
|
This event is triggered when some blocks are clicked in order to view product (redirect to product page).
|
||||||
|
|
||||||
### `wc-blocks_viewed_product` - `detail` parameters
|
### `detail` parameters
|
||||||
|
|
||||||
| Parameter | Type | Default value | Description |
|
| Parameter | Type | Default value | Description |
|
||||||
| ------------------ | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| ------------------ | ------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| `collection` | string | `undefined` | Collection type. It's `undefined` for "create your own" collections as the type is not specified. For other Core collections it can be one of type: `woocommerce/product-collection/best-sellers`, `woocommerce/product-collection/featured`, `woocommerce/product-collection/new-arrivals`, `woocommerce/product-collection/on-sale`, `woocommerce/product-collection/top-rated`. For custom collections it will hold their name. |
|
| `collection` | string | `undefined` | Collection type. It's `undefined` for "create your own" collections as the type is not specified. For other Core collections it can be one of type: `woocommerce/product-collection/best-sellers`, `woocommerce/product-collection/featured`, `woocommerce/product-collection/new-arrivals`, `woocommerce/product-collection/on-sale`, `woocommerce/product-collection/top-rated`. For custom collections it will hold their name. |
|
||||||
| `productId` | number | | Product ID |
|
| `productId` | number | | Product ID |
|
||||||
|
|
||||||
### `wc-blocks_viewed_product` Example usage
|
### Example usage
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
window.document.addEventListener(
|
window.document.addEventListener(
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
Significance: patch
|
||||||
|
Type: dev
|
||||||
|
Comment: Updating Markdown linter rule
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue