mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
24 lines
618 B
Markdown
24 lines
618 B
Markdown
# from yaml
|
|
|
|
Parse text as `.yaml/.yml` and create table. Use this when nushell cannot determine the input file extension.
|
|
|
|
Syntax: `from yaml`
|
|
|
|
## Examples
|
|
|
|
```shell
|
|
> open command_from-yaml
|
|
title: from-yaml
|
|
type: command
|
|
flags: false
|
|
```
|
|
|
|
```shell
|
|
> open command_from-yaml | from yaml
|
|
━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━
|
|
title │ type │ flags
|
|
───────────┼─────────┼───────
|
|
from-yaml │ command │ No
|
|
━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━
|
|
```
|