Skip to content

Commit

Permalink
Remove doc for str escape-glob command (#1331)
Browse files Browse the repository at this point in the history
  • Loading branch information
hustcer committed Apr 3, 2024
1 parent cec6f09 commit a4e4f66
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 61 deletions.
1 change: 0 additions & 1 deletion .vuepress/configs/sidebar/command_categories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const commandCategories = [
'/commands/categories/network.md',
'/commands/categories/path.md',
'/commands/categories/platform.md',
'/commands/categories/prompt.md',
'/commands/categories/random.md',
'/commands/categories/removed.md',
'/commands/categories/shells.md',
Expand Down
10 changes: 5 additions & 5 deletions commands/docs/dfr_datepart.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ Creates an expression to capture multiple date parts
(dfr col datetime | dfr datepart minute | dfr as datetime_minute ),
(dfr col datetime | dfr datepart second | dfr as datetime_second ),
(dfr col datetime | dfr datepart nanosecond | dfr as datetime_ns ) ]
╭───────┬─────────────────┬──────────────────┬───────────────────┬─────────────────┬──────────────────┬────────────────────┬────────────────────┬────────────────╮
# │ datetime datetime_year datetime_month datetime_day datetime_hour datetime_minute datetime_second datetime_ns
├───────┼─────────────────┼──────────────────┼───────────────────┼─────────────────┼──────────────────┼────────────────────┼────────────────────┼────────────────┤
0 │ 2 years ago 2021 │ 12 │ 30 │ 1 │ 2 │ 3 │ 123456789 │
╰───────┴─────────────────┴──────────────────┴───────────────────┴─────────────────┴──────────────────┴────────────────────┴────────────────────┴────────────────╯
╭───┬─────────────┬───────────────┬────────────────┬──────────────┬───────────────┬─────────────────┬──────────────────────────────╮
│ # │ datetime datetime_year datetime_month datetime_day datetime_hour datetime_minute datetime_second datetime_ns │
├───┼─────────────┼───────────────┼────────────────┼──────────────┼───────────────┼─────────────────┼──────────────────────────────┤
│ 0 │ 2 years ago │ 2021 │ 12 │ 30 │ 1 │ 2 │ 3 │ 123456789 │
╰───┴─────────────┴───────────────┴────────────────┴──────────────┴───────────────┴─────────────────┴──────────────────────────────╯
```
32 changes: 18 additions & 14 deletions commands/docs/from.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,21 @@ You must use one of the following subcommands. Using this command as-is will onl

## Subcommands:

| name | type | usage |
| ------------------------------------------ | ------- | -------------------------------------------------------------------------------------------------------------------------- |
| [`from csv`](/commands/docs/from_csv.md) | Builtin | Parse text as .csv and create table. |
| [`from json`](/commands/docs/from_json.md) | Builtin | Convert from json to structured data. |
| [`from nuon`](/commands/docs/from_nuon.md) | Builtin | Convert from nuon to structured data. |
| [`from ods`](/commands/docs/from_ods.md) | Builtin | Parse OpenDocument Spreadsheet(.ods) data and create table. |
| [`from ssv`](/commands/docs/from_ssv.md) | Builtin | Parse text as space-separated values and create a table. The default minimum number of spaces counted as a separator is 2. |
| [`from toml`](/commands/docs/from_toml.md) | Builtin | Parse text as .toml and create record. |
| [`from tsv`](/commands/docs/from_tsv.md) | Builtin | Parse text as .tsv and create table. |
| [`from url`](/commands/docs/from_url.md) | Builtin | Parse url-encoded string as a record. |
| [`from xlsx`](/commands/docs/from_xlsx.md) | Builtin | Parse binary Excel(.xlsx) data and create table. |
| [`from xml`](/commands/docs/from_xml.md) | Builtin | Parse text as .xml and create record. |
| [`from yaml`](/commands/docs/from_yaml.md) | Builtin | Parse text as .yaml/.yml and create table. |
| [`from yml`](/commands/docs/from_yml.md) | Builtin | Parse text as .yaml/.yml and create table. |
| name | type | usage |
| ------------------------------------------ | -------------- | -------------------------------------------------------------------------------------------------------------------------- |
| [`from csv`](/commands/docs/from_csv.md) | Builtin | Parse text as .csv and create table. |
| [`from eml`](/commands/docs/from_eml.md) | Builtin,Plugin | Parse text as .eml and create record. |
| [`from ics`](/commands/docs/from_ics.md) | Builtin,Plugin | Parse text as .ics and create table. |
| [`from ini`](/commands/docs/from_ini.md) | Builtin,Plugin | Parse text as .ini and create table. |
| [`from json`](/commands/docs/from_json.md) | Builtin | Convert from json to structured data. |
| [`from nuon`](/commands/docs/from_nuon.md) | Builtin | Convert from nuon to structured data. |
| [`from ods`](/commands/docs/from_ods.md) | Builtin | Parse OpenDocument Spreadsheet(.ods) data and create table. |
| [`from ssv`](/commands/docs/from_ssv.md) | Builtin | Parse text as space-separated values and create a table. The default minimum number of spaces counted as a separator is 2. |
| [`from toml`](/commands/docs/from_toml.md) | Builtin | Parse text as .toml and create record. |
| [`from tsv`](/commands/docs/from_tsv.md) | Builtin | Parse text as .tsv and create table. |
| [`from url`](/commands/docs/from_url.md) | Builtin | Parse url-encoded string as a record. |
| [`from vcf`](/commands/docs/from_vcf.md) | Builtin,Plugin | Parse text as .vcf and create table. |
| [`from xlsx`](/commands/docs/from_xlsx.md) | Builtin | Parse binary Excel(.xlsx) data and create table. |
| [`from xml`](/commands/docs/from_xml.md) | Builtin | Parse text as .xml and create record. |
| [`from yaml`](/commands/docs/from_yaml.md) | Builtin | Parse text as .yaml/.yml and create table. |
| [`from yml`](/commands/docs/from_yml.md) | Builtin | Parse text as .yaml/.yml and create table. |
41 changes: 0 additions & 41 deletions commands/docs/str_escape-glob.md

This file was deleted.

0 comments on commit a4e4f66

Please sign in to comment.