Skip to content

Commit 64cc889

Browse files
committed
fix internal links
Pandoc does not care about input filenames, and thus the links to other files in the book do not work. What we can do is link to the autogenerated heading identifiers. This works even across multiple input files, because pandoc treats the input as a single concatenated document.
1 parent b83f38b commit 64cc889

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

07-more-adverbs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ When given two monadic functions on the left, `/` acts as a while:
5353
5
5454
```
5555

56-
The truthy and falsy values for while are the same as it is for If(`$`). You can rehash on what they are by checking [Part 3](03-functions-and-variables.md).
56+
The truthy and falsy values for while are the same as it is for If(`$`). You can rehash on what they are by checking [Part 3](#-if).
5757

5858
While-scan is quite self-explanatory (It provides the intermediate results of a while loop):
5959
```

10-io.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The number of an input verb denotes is data format:
1616
- `1:` takes in arrays of bytes.
1717

1818
<!-- The most commonly used I/O verbs are `0:` and `1:`. -->
19-
You have already seen `0:` used for output in the [first chapter](pt1.md).
19+
You have already seen `0:` used for output in the [first chapter](#introduction).
2020

2121
Every I/O verb reads input when used monadically, and writes output when used dyadically. The general form is as follows:
2222

12-thinking-in-k.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Now *that* is matrix multiplication in K. This is the most direct algorithmic co
140140
matmul: {x{+/x*y}\:y}
141141
```
142142

143-
Now, we have a function which can be easily made tacit. With the rules from [Chapter 3](3-functions-and-variables.md#trains), we get our final result:
143+
Now, we have a function which can be easily made tacit. With the rules from [Chapter 3](#trains), we get our final result:
144144

145145
```
146146
matmul: (+/*)\:

0 commit comments

Comments
 (0)