Skip to content

Commit 562e379

Browse files
committed
ci skip
1 parent 93e56f6 commit 562e379

File tree

7 files changed

+156
-129
lines changed

7 files changed

+156
-129
lines changed

commands/docs/describe.md

Lines changed: 86 additions & 83 deletions
Large diffs are not rendered by default.

commands/docs/from_ics.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,15 @@ Converts ics formatted string to table
3232
```nu
3333
> 'BEGIN:VCALENDAR
3434
END:VCALENDAR' | from ics
35-
╭───┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────╮
36-
│ # │ properties │ events │ alarms │ to-Dos │ journals │ free-busys │ timezones │
37-
├───┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┤
38-
│ 0 │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │
39-
╰───┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────╯
35+
╭───┬────────────────┬────────────────┬────────────────┬────────────────┬────────────────┬────────────┬──────╮
36+
│ # │ properties │ events │ alarms │ to-Dos │ journals │ free-busys │ time │
37+
│ │ │ │ │ │ │ │ zone │
38+
│ │ │ │ │ │ │ │ s │
39+
├───┼────────────────┼────────────────┼────────────────┼────────────────┼────────────────┼────────────┼──────┤
40+
│ 0 │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 items] │ [list 0 │ [lis │
41+
│ │ │ │ │ │ │ items] │ t 0 │
42+
│ │ │ │ │ │ │ │ item │
43+
│ │ │ │ │ │ │ │ s] │
44+
╰───┴────────────────┴────────────────┴────────────────┴────────────────┴────────────────┴────────────┴──────╯
4045
4146
```

commands/docs/from_xml.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ Converts xml formatted string to record
4040
<note>
4141
<remember>Event</remember>
4242
</note>' | from xml
43-
╭───────────────────────────────────────────────────────────────────────────────────────╮
44-
│ tag │ note │
45-
│ attributes │ {record 0 fields} │
46-
│ │ ╭───┬──────────┬───────────────────┬────────────────────────────────────╮ │
47-
│ content │ │ # │ tag │ attributes │ content │ │
48-
│ │ ├───┼──────────┼───────────────────┼────────────────────────────────────┤ │
49-
│ │ │ 0 │ remember │ {record 0 fields} │ ╭───┬─────┬────────────┬─────────╮ │ │
50-
│ │ │ │ │ │ │ # │ tag │ attributes │ content │ │ │
51-
│ │ │ │ │ │ ├───┼─────┼────────────┼─────────┤ │ │
52-
│ │ │ │ │ │ │ 0 │ │ │ Event │ │ │
53-
│ │ │ │ │ │ ╰───┴─────┴────────────┴─────────╯ │ │
54-
│ │ ╰───┴──────────┴───────────────────┴────────────────────────────────────╯ │
55-
╰───────────────────────────────────────────────────────────────────────────────────────╯
43+
╭──────────────────────┬─────────────────────────────────────────────────────────────────────────────────────╮
44+
│ tag │ note
45+
│ attributes │ {record 0 fields}
46+
│ ╭───┬──────────┬───────────────────┬────────────────────────────────────╮
47+
│ content │ │ # │ tag │ attributes │ content │
48+
│ ├───┼──────────┼───────────────────┼────────────────────────────────────┤
49+
│ │ 0 │ remember │ {record 0 fields} │ ╭───┬─────┬────────────┬─────────╮ │
50+
│ │ │ │ │ │ # │ tag │ attributes │ content │ │
51+
│ │ │ │ │ ├───┼─────┼────────────┼─────────┤ │
52+
│ │ │ │ │ │ 0 │ │ │ Event │ │
53+
│ │ │ │ │ ╰───┴─────┴────────────┴─────────╯ │
54+
│ ╰───┴──────────┴───────────────────┴────────────────────────────────────╯
55+
╰──────────────────────┴─────────────────────────────────────────────────────────────────────────────────────╯
5656
```
5757

5858
## Notes

commands/docs/histogram.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,13 @@ Compute a histogram for the types of files, with frequency column named freq
5252
Compute a histogram for a list of numbers
5353
```nu
5454
> [1 2 1] | histogram
55-
╭───┬───────┬───────┬──────────┬────────────┬────────────────────────────────────────────────────────────────────╮
56-
│ # │ value │ count │ quantile │ percentage │ frequency │
57-
├───┼───────┼───────┼──────────┼────────────┼────────────────────────────────────────────────────────────────────┤
58-
│ 0 │ 1 │ 2 │ 0.67 │ 66.67% │ ****************************************************************** │
59-
│ 1 │ 2 │ 1 │ 0.33 │ 33.33% │ ********************************* │
60-
╰───┴───────┴───────┴──────────┴────────────┴────────────────────────────────────────────────────────────────────╯
55+
╭───┬───────┬───────┬──────────┬────────────┬────────────────────────────────────────────────────────────────╮
56+
│ # │ value │ count │ quantile │ percentage │ frequency │
57+
├───┼───────┼───────┼──────────┼────────────┼────────────────────────────────────────────────────────────────┤
58+
│ 0 │ 1 │ 2 │ 0.67 │ 66.67% │ ************************************************************** │
59+
│ │ │ │ │ │ **** │
60+
│ 1 │ 2 │ 1 │ 0.33 │ 33.33% │ ********************************* │
61+
╰───┴───────┴───────┴──────────┴────────────┴────────────────────────────────────────────────────────────────╯
6162
6263
```
6364

commands/docs/plugin_list.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ contributors: false
3737
List installed plugins.
3838
```nu
3939
> plugin list
40-
╭───┬──────┬─────────────────────────────┬────────┬───────────────────────────────┬───────┬─────────────╮
41-
│ # │ name │ version │ status │ pid │ filename │ shell │ commands │
42-
├───┼──────┼─────────────────────────────┼────────┼───────────────────────────────┼───────┼─────────────┤
43-
│ 0 │ inc │ 0.109.0 │ running │ 106480 │ /opt/nu/plugins/nu_plugin_inc │ │ ╭───┬─────╮ │
44-
│ │ │ │ │ │ │ │ 0 │ inc │ │
45-
│ │ │ │ │ │ │ ╰───┴─────╯ │
46-
╰───┴──────┴─────────────────────────────┴────────┴───────────────────────────────┴───────┴─────────────╯
40+
╭───┬──────┬─────────────────────┬──────────┬────────┬───────────────────────────────┬───────┬─────────────╮
41+
# │ name version │ status │ pid │ filename │ shell │ commands │
42+
├───┼──────┼─────────────────────┼──────────┼────────┼───────────────────────────────┼───────┼─────────────┤
43+
0 │ inc │ 0.109.0 │ running │ 106480 │ /opt/nu/plugins/nu_plugin_inc │ │ ╭───┬─────╮ │
44+
│ │ │ │ │ 0 │ inc │ │
45+
│ │ │ │ ╰───┴─────╯ │
46+
╰───┴──────┴─────────────────────┴──────────┴────────┴───────────────────────────────┴───────┴─────────────╯
4747
4848
```
4949

commands/docs/polars_datepart.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,28 @@ Creates an expression to capture multiple date parts
5353
(polars col datetime | polars datepart minute | polars as datetime_minute ),
5454
(polars col datetime | polars datepart second | polars as datetime_second ),
5555
(polars col datetime | polars datepart nanosecond | polars as datetime_ns ) ]
56-
╭───┬─────────────┬───────────────┬────────────────┬──────────────┬───────────────┬─────────────────┬─────────────────┬─────────────╮
57-
│ # │ datetime │ datetime_year │ datetime_month │ datetime_day │ datetime_hour │ datetime_minute │ datetime_second │ datetime_ns │
58-
├───┼─────────────┼───────────────┼────────────────┼──────────────┼───────────────┼─────────────────┼─────────────────┼─────────────┤
59-
│ 0 │ 3 years ago │ 2021 │ 12 │ 30 │ 1 │ 2 │ 3 │ 123456789 │
60-
╰───┴─────────────┴───────────────┴────────────────┴──────────────┴───────────────┴─────────────────┴─────────────────┴─────────────╯
56+
╭───┬─────────────┬───────────────┬────────────────┬──────────────┬───────────────┬─────────────────┬────┬───╮
57+
│ # │ datetime │ datetime_year │ datetime_month │ datetime_day │ datetime_hour │ datetime_minute │ da │ d │
58+
│ │ │ │ │ │ │ │ te │ a │
59+
│ │ │ │ │ │ │ │ ti │ t │
60+
│ │ │ │ │ │ │ │ me │ e │
61+
│ │ │ │ │ │ │ │ _s │ t │
62+
│ │ │ │ │ │ │ │ ec │ i │
63+
│ │ │ │ │ │ │ │ on │ m │
64+
│ │ │ │ │ │ │ │ d │ e │
65+
│ │ │ │ │ │ │ │ │ _ │
66+
│ │ │ │ │ │ │ │ │ n │
67+
│ │ │ │ │ │ │ │ │ s │
68+
├───┼─────────────┼───────────────┼────────────────┼──────────────┼───────────────┼─────────────────┼────┼───┤
69+
│ 0 │ 3 years ago │ 2021 │ 12 │ 30 │ 1 │ 2 │ 3 │ 1 │
70+
│ │ │ │ │ │ │ │ │ 2 │
71+
│ │ │ │ │ │ │ │ │ 3 │
72+
│ │ │ │ │ │ │ │ │ 4 │
73+
│ │ │ │ │ │ │ │ │ 5 │
74+
│ │ │ │ │ │ │ │ │ 6 │
75+
│ │ │ │ │ │ │ │ │ 7 │
76+
│ │ │ │ │ │ │ │ │ 8 │
77+
│ │ │ │ │ │ │ │ │ 9 │
78+
╰───┴─────────────┴───────────────┴────────────────┴──────────────┴───────────────┴─────────────────┴────┴───╯
6179
6280
```

0 commit comments

Comments
 (0)