From 77232fdb36563420810409b426b8c6196ddc1472 Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Mon, 30 Sep 2019 15:42:36 -0700 Subject: [PATCH] Clean out bad MD again --- web-data/html/mdnTagDescriptions.json | 46 +++++++++++++-------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/web-data/html/mdnTagDescriptions.json b/web-data/html/mdnTagDescriptions.json index 62990e1..f5e304b 100644 --- a/web-data/html/mdnTagDescriptions.json +++ b/web-data/html/mdnTagDescriptions.json @@ -367,7 +367,7 @@ "attributes": [ { "name": "align", - "description": "This enumerated attribute specifies how horizontal alignment of each column cell content will be handled. Possible values are:\n\n* `left`, aligning the content to the left of the cell\n* `center`, centering the content in the cell\n* `right`, aligning the content to the right of the cell\n* `justify`, inserting spaces into the textual content so that the content is justified in the cell\n* `char`, aligning the textual content on a special character with a minimal offset, defined by the `[char](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char)` and `[charoff](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-charoff)` attributes Unimplemented (see [bug 2212](https://bugzilla.mozilla.org/show_bug.cgi?id=2212 \"character alignment not implemented (align=char, charoff=, text-align:)\")).\n\nIf this attribute is not set, its value is inherited from the `[align](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup#attr-align)` of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element this `` element belongs too. If there are none, the `left` value is assumed.\n\n**Note:** Do not use this attribute as it is obsolete (not supported) in the latest standard.\n\n* To achieve the same effect as the `left`, `center`, `right` or `justify` values:\n * Do not try to set the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property on a selector giving a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") element. Because [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td \"The HTML element defines a cell of a table that contains data. It participates in the table model.\") elements are not descendant of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") element, they won't inherit it.\n * If the table doesn't use a `[colspan](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan)` attribute, use the `td:nth-child(an+b)` CSS selector. Set `a` to zero and `b` to the position of the column in the table, e.g. `td:nth-child(2) { text-align: right; }` to right-align the second column.\n * If the table does use a `[colspan](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan)` attribute, the effect can be achieved by combining adequate CSS attribute selectors like `[colspan=n]`, though this is not trivial.\n* To achieve the same effect as the `char` value, in CSS3, you can use the value of the `[char](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char)` as the value of the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property Unimplemented." + "description": "This enumerated attribute specifies how horizontal alignment of each column cell content will be handled. Possible values are:\n\n* `left`, aligning the content to the left of the cell\n* `center`, centering the content in the cell\n* `right`, aligning the content to the right of the cell\n* `justify`, inserting spaces into the textual content so that the content is justified in the cell\n* `char`, aligning the textual content on a special character with a minimal offset, defined by the [`char`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char) and [`charoff`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-charoff) attributes Unimplemented (see [bug 2212](https://bugzilla.mozilla.org/show_bug.cgi?id=2212 \"character alignment not implemented (align=char, charoff=, text-align:)\")).\n\nIf this attribute is not set, its value is inherited from the [`align`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup#attr-align) of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element this `` element belongs too. If there are none, the `left` value is assumed.\n\n**Note:** Do not use this attribute as it is obsolete (not supported) in the latest standard.\n\n* To achieve the same effect as the `left`, `center`, `right` or `justify` values:\n * Do not try to set the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property on a selector giving a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") element. Because [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td \"The HTML element defines a cell of a table that contains data. It participates in the table model.\") elements are not descendant of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") element, they won't inherit it.\n * If the table doesn't use a [`colspan`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan) attribute, use the `td:nth-child(an+b)` CSS selector. Set `a` to zero and `b` to the position of the column in the table, e.g. `td:nth-child(2) { text-align: right; }` to right-align the second column.\n * If the table does use a [`colspan`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan) attribute, the effect can be achieved by combining adequate CSS attribute selectors like `[colspan=n]`, though this is not trivial.\n* To achieve the same effect as the `char` value, in CSS3, you can use the value of the [`char`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char) as the value of the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property Unimplemented." } ] }, @@ -376,7 +376,7 @@ "attributes": [ { "name": "align", - "description": "This enumerated attribute specifies how horizontal alignment of each column cell content will be handled. Possible values are:\n\n* `left`, aligning the content to the left of the cell\n* `center`, centering the content in the cell\n* `right`, aligning the content to the right of the cell\n* `justify`, inserting spaces into the textual content so that the content is justified in the cell\n* `char`, aligning the textual content on a special character with a minimal offset, defined by the `[char](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char)` and `[charoff](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-charoff)` attributes Unimplemented (see [bug 2212](https://bugzilla.mozilla.org/show_bug.cgi?id=2212 \"character alignment not implemented (align=char, charoff=, text-align:)\")).\n\nIf this attribute is not set, the `left` value is assumed. The descendant [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") elements may override this value using their own `[align](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-align)` attribute.\n\n**Note:** Do not use this attribute as it is obsolete (not supported) in the latest standard.\n\n* To achieve the same effect as the `left`, `center`, `right` or `justify` values:\n * Do not try to set the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property on a selector giving a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element. Because [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td \"The HTML element defines a cell of a table that contains data. It participates in the table model.\") elements are not descendant of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element, they won't inherit it.\n * If the table doesn't use a `[colspan](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan)` attribute, use one `td:nth-child(an+b)` CSS selector per column, where a is the total number of the columns in the table and b is the ordinal position of this column in the table. Only after this selector the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property can be used.\n * If the table does use a `[colspan](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan)` attribute, the effect can be achieved by combining adequate CSS attribute selectors like `[colspan=n]`, though this is not trivial.\n* To achieve the same effect as the `char` value, in CSS3, you can use the value of the `[char](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup#attr-char)` as the value of the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property Unimplemented." + "description": "This enumerated attribute specifies how horizontal alignment of each column cell content will be handled. Possible values are:\n\n* `left`, aligning the content to the left of the cell\n* `center`, centering the content in the cell\n* `right`, aligning the content to the right of the cell\n* `justify`, inserting spaces into the textual content so that the content is justified in the cell\n* `char`, aligning the textual content on a special character with a minimal offset, defined by the [`char`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-char) and [`charoff`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-charoff) attributes Unimplemented (see [bug 2212](https://bugzilla.mozilla.org/show_bug.cgi?id=2212 \"character alignment not implemented (align=char, charoff=, text-align:)\")).\n\nIf this attribute is not set, the `left` value is assumed. The descendant [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col \"The HTML element defines a column within a table and is used for defining common semantics on all common cells. It is generally found within a element.\") elements may override this value using their own [`align`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col#attr-align) attribute.\n\n**Note:** Do not use this attribute as it is obsolete (not supported) in the latest standard.\n\n* To achieve the same effect as the `left`, `center`, `right` or `justify` values:\n * Do not try to set the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property on a selector giving a [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element. Because [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td \"The HTML element defines a cell of a table that contains data. It participates in the table model.\") elements are not descendant of the [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup \"The HTML element defines a group of columns within a table.\") element, they won't inherit it.\n * If the table doesn't use a [`colspan`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan) attribute, use one `td:nth-child(an+b)` CSS selector per column, where a is the total number of the columns in the table and b is the ordinal position of this column in the table. Only after this selector the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property can be used.\n * If the table does use a [`colspan`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td#attr-colspan) attribute, the effect can be achieved by combining adequate CSS attribute selectors like `[colspan=n]`, though this is not trivial.\n* To achieve the same effect as the `char` value, in CSS3, you can use the value of the [`char`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup#attr-char) as the value of the [`text-align`](https://developer.mozilla.org/en-US/docs/Web/CSS/text-align \"The text-align CSS property sets the horizontal alignment of an inline or table-cell box. This means it works like vertical-align but in the horizontal direction.\") property Unimplemented." } ] }, @@ -514,7 +514,7 @@ "attributes": [ { "name": "accept", - "description": "A comma-separated list of content types that the server accepts.\n\n**Usage note:** This attribute has been removed in HTML5 and should no longer be used. Instead, use the `[accept](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept)` attribute of the specific [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input \"The HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent.\") element." + "description": "A comma-separated list of content types that the server accepts.\n\n**Usage note:** This attribute has been removed in HTML5 and should no longer be used. Instead, use the [`accept`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#attr-accept) attribute of the specific [``](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input \"The HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent.\") element." }, { "name": "accept-charset", @@ -522,7 +522,7 @@ }, { "name": "action", - "description": "The URI of a program that processes the form information. This value can be overridden by a `[formaction](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#attr-formaction)` attribute on a [`