@markuplint/html-spec 4.3.1-alpha.0 → 4.4.0

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.
Files changed (2) hide show
  1. package/index.json +13 -2
  2. package/package.json +5 -5
package/index.json CHANGED
@@ -371,6 +371,17 @@
371
371
  }
372
372
  }
373
373
  },
374
+ "writingsuggestions": {
375
+ "type": {
376
+ "enum": ["", "true", "false"],
377
+ "disallowToSurroundBySpaces": true,
378
+ "invalidValueDefault": "default",
379
+ "missingValueDefault": "default",
380
+ "sameStates": {
381
+ "true": [""]
382
+ }
383
+ }
384
+ },
374
385
  "class": {
375
386
  "type": "Any"
376
387
  },
@@ -40866,11 +40877,11 @@
40866
40877
  "deprecated": true
40867
40878
  },
40868
40879
  "cellpadding": {
40869
- "description": "Defines the space between the content of a cell and its border, displayed or not. If the cellpadding's length is defined in pixels, this pixel-sized space will be applied to all four sides of the cell's content. If the length is defined using a percentage value, the content will be centered and the total vertical space (top and bottom) will represent this value. The same is true for the total horizontal space (left and right). Apply the border-collapse CSS property to the <table> element, with its value set to collapse, and the padding CSS property to the <td> elements instead, as this attribute is deprecated.",
40880
+ "description": "Defines the space between the content of a cell and its border. This attribute is obsolete: instead of using it, apply the padding CSS property to the <th> and <td> elements.",
40870
40881
  "deprecated": true
40871
40882
  },
40872
40883
  "cellspacing": {
40873
- "description": "Defines the size of the space between two cells in a percentage value or pixels. The attribute is applied both horizontally and vertically, to the space between the top of the table and the cells of the first row, the left of the table and the first column, the right of the table and the last column and the bottom of the table and the last row. Apply the border-spacing CSS property to the <table> element instead, as this attribute is deprecated. border-spacing does not have any effect if the border-collapse CSS property is set to collapse.",
40884
+ "description": "Defines the size of the space between two cells. This attribute is obsolete: instead of using it, set the border-spacing CSS property on the <table> element. Note that this has no effect if the <table> element's border-collapse CSS property is set to collapse.",
40874
40885
  "deprecated": true
40875
40886
  },
40876
40887
  "frame": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "4.3.1-alpha.0",
3
+ "version": "4.4.0",
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>",
@@ -17,11 +17,11 @@
17
17
  "gen:prettier": "prettier --write index.json"
18
18
  },
19
19
  "devDependencies": {
20
- "@markuplint/spec-generator": "4.2.1-alpha.0",
21
- "@markuplint/test-tools": "4.1.1-alpha.0"
20
+ "@markuplint/spec-generator": "4.3.0",
21
+ "@markuplint/test-tools": "4.2.0"
22
22
  },
23
23
  "dependencies": {
24
- "@markuplint/ml-spec": "4.1.1-alpha.0"
24
+ "@markuplint/ml-spec": "4.2.0"
25
25
  },
26
- "gitHead": "02b8ba8440aeeafbf9507ea0ef84bc258fced2c6"
26
+ "gitHead": "fe251a0257345255ee887dd2302b889ac32a22a5"
27
27
  }