1
0
mirror of https://github.com/go-task/task.git synced 2025-06-27 00:51:05 +02:00

docs: fix some examples to use spaces instead of tabs (#2002)

This commit is contained in:
jonathanagustin
2025-01-18 08:04:39 -05:00
committed by GitHub
parent 97f41b710e
commit bad2c8fcc1

View File

@ -341,43 +341,43 @@ It means that the included Taskfile tasks will be available without the namespac
<Tabs defaultValue="1"
values={[
{label: 'Taskfile.yml', value: '1'},
{label: 'Included.yml', value: '2'}
]}>
values={[
{label: 'Taskfile.yml', value: '1'},
{label: 'Included.yml', value: '2'}
]}>
<TabItem value="1">
<TabItem value="1">
```yaml
version: '3'
```yaml
version: '3'
includes:
lib:
taskfile: ./Included.yml
flatten: true
includes:
lib:
taskfile: ./Included.yml
flatten: true
tasks:
greet:
cmds:
- echo "Greet"
- task: foo
```
tasks:
greet:
cmds:
- echo "Greet"
- task: foo
```
</TabItem>
<TabItem value="2">
</TabItem>
<TabItem value="2">
```yaml
version: '3'
```yaml
version: '3'
tasks:
foo:
cmds:
- echo "Foo"
```
tasks:
foo:
cmds:
- echo "Foo"
```
</TabItem></Tabs>
</TabItem></Tabs>
If you run `task -a` it will print :
@ -400,12 +400,12 @@ Foo
If multiple tasks have the same name, an error will be thrown:
<Tabs defaultValue="1"
values={[
{label: 'Taskfile.yml', value: '1'},
{label: 'Included.yml', value: '2'}
]}>
values={[
{label: 'Taskfile.yml', value: '1'},
{label: 'Included.yml', value: '2'}
]}>
<TabItem value="1">
<TabItem value="1">
```yaml
version: '3'
@ -419,23 +419,23 @@ If multiple tasks have the same name, an error will be thrown:
cmds:
- echo "Greet"
- task: foo
```
```
</TabItem>
<TabItem value="2">
</TabItem>
<TabItem value="2">
```yaml
version: '3'
```yaml
version: '3'
tasks:
tasks:
greet:
cmds:
- echo "Foo"
```
- echo "Foo"
```
</TabItem></Tabs>
</TabItem></Tabs>
If you run `task -a` it will print:
```text