Skip to content

Commit aea4c26

Browse files
committed
fix some links
1 parent 602fe9c commit aea4c26

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

_episodes/02-1st-example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ CWL documents are written in [JSON][json] or [YAML][yaml-homepage], or a mix of
1919
We will use YAML throughout this guide.
2020
If you are not familiar with YAML,
2121
you may find it helpful to refer to
22-
[this quick tutorial for the subset of YAML used in CWL](/yaml).
22+
[this quick tutorial for the subset of YAML used in CWL]({{ page.root }}{% link _extras/yaml.md %}).
2323

2424
First, create a file called `1st-tool.cwl`, containing the boxed text below. It will help you to use a text editor that can be
2525
specified to produce text in YAML or JSON. Whatever text editor you use, the indents you see should not be created using tabs.
@@ -86,7 +86,7 @@ inputs:
8686

8787
The `inputs` section describes the inputs of the tool.
8888
This is a mapped list of input parameters
89-
(see the [YAML Guide](/yaml#mapped-objects) for more about the format)
89+
(see the [YAML Guide]({{ page.root }}{% link _extras/yaml.md %}#maps) for more about the format)
9090
and each parameter includes an identifier,
9191
a data type,
9292
and optionally an `inputBinding`.

_episodes/09-array-inputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ separator string.
7676
Note that the arrays of inputs are specified inside square brackets `[]` in `array-inputs-job.yml`. Arrays can also be expressed over multiple lines, where
7777
array values that are not defined with an associated key is marked by a leading
7878
This will be demonstrated in the next lesson
79-
and is discussed in more detail in the [YAML Guide](/yaml#arrays).
79+
and is discussed in more detail in the [YAML Guide]({{ page.root }}{% link _extras/yaml.md %}#arrays).
8080
You can specify arrays of arrays, arrays of records, and other complex types.
8181

8282
{% include links.md %}

_episodes/10-array-outputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Final process status is success
5454
~~~
5555
{: .output}
5656

57-
As described in the [YAML Guide](/yaml#arrays),
57+
As described in the [YAML Guide]({{ page.root }}{% link _extras/yaml.md %}#arrays),
5858
the array of expected outputs is specified in `array-outputs-job.yml` with each
5959
entry marked by a leading `-`. This format can also be used in CWL descriptions
6060
to mark entries in arrays, as demonstrated in several of the upcoming sections.

_extras/yaml.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ relevant when writing CWL descriptions and input parameter files.
1414

1515
### Contents
1616

17-
- [Key-Value Pairs](/yaml/#key-value-pairs)
18-
- [Comments](/yaml/#comments)
19-
- [Mapped Objects](/yaml/#mapped-objects)
20-
- [Arrays](/yaml/#arrays)
21-
- [JSON Style](/yaml/#json-style)
17+
- [Key-Value Pairs]({{ page.root }}{% link _extras/yaml.md %}#key-value-pairs)
18+
- [Comments]({{ page.root }}{% link _extras/yaml.md %}#comments)
19+
- [Maps]({{ page.root }}{% link _extras/yaml.md %}#maps)
20+
- [Arrays]({{ page.root }}{% link _extras/yaml.md %}#arrays)
21+
- [JSON Style]({{ page.root }}{% link _extras/yaml.md %}#json-style)
2222

2323
### Key-Value Pairs
2424

0 commit comments

Comments
 (0)