Skip to content

Commit ca32037

Browse files
chore(build): auto-generate docs
1 parent cf1c374 commit ca32037

1 file changed

Lines changed: 6 additions & 50 deletions

File tree

docs/extras/editor/dial.md

Lines changed: 6 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,6 @@ opts = function()
5555
cyclic = true,
5656
})
5757

58-
local weekdays = augend.constant.new({
59-
elements = {
60-
"Monday",
61-
"Tuesday",
62-
"Wednesday",
63-
"Thursday",
64-
"Friday",
65-
"Saturday",
66-
"Sunday",
67-
},
68-
word = true,
69-
cyclic = true,
70-
})
71-
7258
local months = augend.constant.new({
7359
elements = {
7460
"January",
@@ -88,15 +74,6 @@ opts = function()
8874
cyclic = true,
8975
})
9076

91-
local capitalized_boolean = augend.constant.new({
92-
elements = {
93-
"True",
94-
"False",
95-
},
96-
word = true,
97-
cyclic = true,
98-
})
99-
10077
return {
10178
dials_by_ft = {
10279
css = "css",
@@ -118,11 +95,12 @@ opts = function()
11895
augend.integer.alias.decimal_int, -- nonnegative and negative decimal number
11996
augend.integer.alias.hex, -- nonnegative hex number (0x01, 0x1a1f, etc.)
12097
augend.date.alias["%Y/%m/%d"], -- date (2022/02/19, etc.)
98+
augend.constant.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun
99+
augend.constant.alias.en_weekday_full, -- Monday, Tuesday, ..., Saturday, Sunday
121100
ordinal_numbers,
122-
weekdays,
123101
months,
124-
capitalized_boolean,
125102
augend.constant.alias.bool, -- boolean value (true <-> false)
103+
augend.constant.alias.Bool, -- boolean value (True <-> False)
126104
logical_alias,
127105
},
128106
vue = {
@@ -217,20 +195,6 @@ end
217195
cyclic = true,
218196
})
219197

220-
local weekdays = augend.constant.new({
221-
elements = {
222-
"Monday",
223-
"Tuesday",
224-
"Wednesday",
225-
"Thursday",
226-
"Friday",
227-
"Saturday",
228-
"Sunday",
229-
},
230-
word = true,
231-
cyclic = true,
232-
})
233-
234198
local months = augend.constant.new({
235199
elements = {
236200
"January",
@@ -250,15 +214,6 @@ end
250214
cyclic = true,
251215
})
252216

253-
local capitalized_boolean = augend.constant.new({
254-
elements = {
255-
"True",
256-
"False",
257-
},
258-
word = true,
259-
cyclic = true,
260-
})
261-
262217
return {
263218
dials_by_ft = {
264219
css = "css",
@@ -280,11 +235,12 @@ end
280235
augend.integer.alias.decimal_int, -- nonnegative and negative decimal number
281236
augend.integer.alias.hex, -- nonnegative hex number (0x01, 0x1a1f, etc.)
282237
augend.date.alias["%Y/%m/%d"], -- date (2022/02/19, etc.)
238+
augend.constant.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun
239+
augend.constant.alias.en_weekday_full, -- Monday, Tuesday, ..., Saturday, Sunday
283240
ordinal_numbers,
284-
weekdays,
285241
months,
286-
capitalized_boolean,
287242
augend.constant.alias.bool, -- boolean value (true <-> false)
243+
augend.constant.alias.Bool, -- boolean value (True <-> False)
288244
logical_alias,
289245
},
290246
vue = {

0 commit comments

Comments
 (0)