@markuplint/html-spec 4.8.1-alpha.1 → 4.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -3
- package/index.json +17 -13
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,15 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [4.8.
|
|
6
|
+
## [4.8.2](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.8.1...@markuplint/html-spec@4.8.2) (2024-06-25)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **html-spec:** update content model for div element within dl element ([9d5ba90](https://github.com/markuplint/markuplint/commit/9d5ba90f0704748513bd257aab74584ff3cdaef3))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
|
12
15
|
|
|
13
16
|
|
|
14
|
-
## [4.8.1
|
|
17
|
+
## [4.8.1](https://github.com/markuplint/markuplint/compare/@markuplint/html-spec@4.8.0...@markuplint/html-spec@4.8.1) (2024-06-09)
|
|
15
18
|
|
|
16
19
|
**Note:** Version bump only for package @markuplint/html-spec
|
|
17
20
|
|
package/index.json
CHANGED
|
@@ -36475,19 +36475,23 @@
|
|
|
36475
36475
|
"condition": "dl > div",
|
|
36476
36476
|
"contents": [
|
|
36477
36477
|
{
|
|
36478
|
-
"
|
|
36479
|
-
|
|
36480
|
-
|
|
36481
|
-
|
|
36482
|
-
|
|
36483
|
-
|
|
36484
|
-
|
|
36485
|
-
|
|
36486
|
-
|
|
36487
|
-
|
|
36488
|
-
|
|
36489
|
-
|
|
36490
|
-
|
|
36478
|
+
"oneOrMore": [
|
|
36479
|
+
{
|
|
36480
|
+
"zeroOrMore": ":model(script-supporting)"
|
|
36481
|
+
},
|
|
36482
|
+
{
|
|
36483
|
+
"oneOrMore": "dt"
|
|
36484
|
+
},
|
|
36485
|
+
{
|
|
36486
|
+
"zeroOrMore": ":model(script-supporting)"
|
|
36487
|
+
},
|
|
36488
|
+
{
|
|
36489
|
+
"oneOrMore": "dd"
|
|
36490
|
+
},
|
|
36491
|
+
{
|
|
36492
|
+
"zeroOrMore": ":model(script-supporting)"
|
|
36493
|
+
}
|
|
36494
|
+
]
|
|
36491
36495
|
}
|
|
36492
36496
|
]
|
|
36493
36497
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.2",
|
|
4
4
|
"description": "A specification of HTML Living Standard for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"gen:prettier": "prettier --write index.json"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@markuplint/spec-generator": "4.6.
|
|
31
|
-
"@markuplint/test-tools": "4.5.
|
|
30
|
+
"@markuplint/spec-generator": "4.6.5",
|
|
31
|
+
"@markuplint/test-tools": "4.5.5"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@markuplint/ml-spec": "4.6.
|
|
34
|
+
"@markuplint/ml-spec": "4.6.3"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "05fdca254661ec335ff0cae4c6a11db164b032b9"
|
|
37
37
|
}
|