Skip to content

Commit 99ffb72

Browse files
committed
Refresh Nu command docs for v0.103
1 parent 8f0ff8f commit 99ffb72

File tree

572 files changed

+1471
-665
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

572 files changed

+1471
-665
lines changed

.vuepress/configs/sidebar/command_categories.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export const commandCategories = [
2+
'/commands/categories/.md',
23
'/commands/categories/bits.md',
34
'/commands/categories/bytes.md',
45
'/commands/categories/chart.md',
@@ -10,8 +11,8 @@ export const commandCategories = [
1011
'/commands/categories/date.md',
1112
'/commands/categories/debug.md',
1213
'/commands/categories/default.md',
13-
'/commands/categories/deprecated.md',
1414
'/commands/categories/env.md',
15+
'/commands/categories/experimental.md',
1516
'/commands/categories/expression.md',
1617
'/commands/categories/filesystem.md',
1718
'/commands/categories/filters.md',

commands/categories/experimental.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
editLink: false
3+
contributors: false
4+
---
5+
16
# Experimental
27

38
<script>
@@ -15,12 +20,16 @@
1520
</script>
1621

1722
<table>
18-
<tr>
19-
<th>Command</th>
20-
<th>Description</th>
21-
</tr>
22-
<tr v-for="command in commands">
23-
<td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
24-
<td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
25-
</tr>
23+
<thead>
24+
<tr>
25+
<th>Command</th>
26+
<th>Description</th>
27+
</tr>
28+
</thead>
29+
<tbody>
30+
<tr v-for="command in commands">
31+
<td><a :href="$withBase(command.path)">{{ command.title }}</a></td>
32+
<td style="white-space: pre-wrap;">{{ command.frontmatter.usage }}</td>
33+
</tr>
34+
</tbody>
2635
</table>

commands/docs/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: alias
33
categories: |
44
core
5-
version: 0.102.0
5+
version: 0.103.0
66
core: |
77
Alias a command (with optional flags) to a new name.
88
usage: |

commands/docs/all.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: all
33
categories: |
44
filters
5-
version: 0.102.0
5+
version: 0.103.0
66
filters: |
77
Test if every element of the input fulfills a predicate expression.
88
usage: |

commands/docs/ansi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi
33
categories: |
44
platform
5-
version: 0.102.0
5+
version: 0.103.0
66
platform: |
77
Output ANSI codes to change color and style of text.
88
usage: |

commands/docs/ansi_gradient.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi gradient
33
categories: |
44
platform
5-
version: 0.102.0
5+
version: 0.103.0
66
platform: |
77
Add a color gradient (using ANSI color codes) to the given string.
88
usage: |
@@ -29,7 +29,7 @@ contributors: false
2929

3030
## Parameters
3131

32-
- `...rest`: for a data structure input, add a gradient to strings at the given cell paths
32+
- `...rest`: For a data structure input, add a gradient to strings at the given cell paths.
3333

3434

3535
## Input/output types:

commands/docs/ansi_link.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi link
33
categories: |
44
platform
5-
version: 0.102.0
5+
version: 0.103.0
66
platform: |
77
Add a link (using OSC 8 escape sequence) to the given string.
88
usage: |

commands/docs/ansi_strip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ansi strip
33
categories: |
44
platform
5-
version: 0.102.0
5+
version: 0.103.0
66
platform: |
77
Strip ANSI escape sequences from a string.
88
usage: |

commands/docs/any.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: any
33
categories: |
44
filters
5-
version: 0.102.0
5+
version: 0.103.0
66
filters: |
77
Tests if any element of the input fulfills a predicate expression.
88
usage: |

commands/docs/append.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: append
33
categories: |
44
filters
5-
version: 0.102.0
5+
version: 0.103.0
66
filters: |
77
Append any number of rows to a table.
88
usage: |

0 commit comments

Comments
 (0)