You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: meta/tags.yml
+28-2Lines changed: 28 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ link:
15
15
base: SelfClosingTag
16
16
attributes:
17
17
href: Location of the file being linked to
18
-
rel: Kind of file being loaded (eg stylesheet)
18
+
rel: Kind of file being loaded (eg `"stylesheet"`)
19
19
20
20
a:
21
21
base: StylableTag
@@ -38,15 +38,17 @@ style:
38
38
form:
39
39
attributes:
40
40
method:
41
-
doc: HTTP request method to use
41
+
doc: The HTTP request method to use when submitting this form. In almost all cases, you'll want this to be POST.
42
42
default: "'POST'"
43
+
action: The URL to request to when submitting this form. By default, requests will be sent to the same URL as the current page.
43
44
44
45
input:
45
46
base: SelfClosingTag
46
47
attributes:
47
48
type: Kind of input control to use (checkbox, radio, date, password, text, etc)
48
49
name: Name of the field. Submitted with the form as part of a name/value pair
49
50
value: Initial value of the control
51
+
placeholder: Placeholder text to use for text inputs. If the field is empty, the placeholder is shown.
50
52
readonly:
51
53
doc: Include if field is read-only
52
54
type: bool
@@ -55,6 +57,30 @@ input:
55
57
doc: Include if field is required
56
58
type: bool
57
59
default: "False"
60
+
formmethod: The HTTP request method to use on click if this input is a submit button. Generally, it is preferred to set the `method` attribute on the `<form>` element instead of this.
61
+
formaction: The URL to request to on click if this input is a submit button. Generally, it is preferred to set the `action` attribute on the `<form>` element instead of this.
62
+
63
+
button:
64
+
base: StylableTag
65
+
attributes:
66
+
formmethod: The HTTP request method to use on click. Generally, it is preferred to set the `method` attribute on the `<form>` element instead of this.
67
+
formaction: The URL to request to on click. Generally, it is preferred to set the `action` attribute on the `<form>` element instead of this.
68
+
69
+
table:
70
+
base: StylableTag
71
+
72
+
th:
73
+
base: StylableTag
74
+
attributes:
75
+
scope: 'The area of the table that this heading applies to. Allowed values: `"col"`, `"row"`, `"colgroup"`, `"rowgroup"`'
76
+
colspan: The number of columns in the table that this heading spans.
77
+
rowspan: The number of rows in the table that this heading spans.
78
+
79
+
td:
80
+
base: StylableTag
81
+
attributes:
82
+
colspan: The number of columns in the table that this cell spans.
83
+
rowspan: The number of rows in the table that this cell spans.
0 commit comments