Skip to content
Snippets Groups Projects
Commit e260f4e3 authored by Fabian Würfl's avatar Fabian Würfl
Browse files

Fix broken links in documentation

Commit 285993d4 (#499) reformatted the manual (changed directory
structure) without updating all references to other pages within the
documentation.

Additionally, obsolete files are deleted.
parent bffe8190
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,10 @@ ...@@ -11,9 +11,10 @@
- [Quoting Rules](ch03-03-quotation.md) - [Quoting Rules](ch03-03-quotation.md)
- [Multi-line Arguments](ch03-04-multiargs.md) - [Multi-line Arguments](ch03-04-multiargs.md)
- [Multi-line Comments](ch03-05-multicomments.md) - [Multi-line Comments](ch03-05-multicomments.md)
- [General Tips](ch03-06-general.md)
- [Variable Assignments](ch04-00-variables.md) - [Variable Assignments](ch04-00-variables.md)
- [String Variables](ch04-01-strings.md) - [String Variables](ch04-01-strings.md)
- [Tuple Variables](ch04-02-tuples.md) - [Tuple Variables](ch04-02-tuples.md)
- [Array Variables](ch04-03-arrays.md) - [Array Variables](ch04-03-arrays.md)
...@@ -21,16 +22,16 @@ ...@@ -21,16 +22,16 @@
- [Exporting Variables](ch04-05-exporting.md) - [Exporting Variables](ch04-05-exporting.md)
- [Expansions](ch05-00-expansions.md) - [Expansions](ch05-00-expansions.md)
- [Variable Expansions](ch05-01-variable.md) - [Variable Expansions](ch05-01-variable.md)
- [Process Expansions](ch05-02-process.md) - [Process Expansions](ch05-02-process.md)
- [Brace Expansions](ch05-03-brace.md) - [Brace Expansions](ch05-03-brace.md)
- [Arithmetic Expansions](ch05-04-arithmetic.md) - [Arithmetic Expansions](ch05-04-arithmetic.md)
- [Method Expansions](ch05-05-methods.md) - [Method Expansions](ch05-05-method.md)
- [Slicing Syntax](ch06-00-slicing.md) - [Slicing Syntax](ch06-00-slicing.md)
- [Control Flow](ch07-00-index.md) - [Control Flow](ch07-00-flow.md)
- [Conditionals](ch07-01-conditionals.md) - [Conditionals](ch07-01-conditionals.md)
- [Loops](ch07-02-loops.md) - [Loops](ch07-02-loops.md)
......
...@@ -70,7 +70,7 @@ open an issue on the project's GitHub. ...@@ -70,7 +70,7 @@ open an issue on the project's GitHub.
Small features that don't belong in any specific category. Small features that don't belong in any specific category.
[Miscellanious Features](miscellanious.html) [Miscellanious Features](ch03-00-miscellaneous.html)
## Shell Expansions / Substitutions ## Shell Expansions / Substitutions
...@@ -81,11 +81,12 @@ their own variant of process expansions (**@()**) which splits outputs by whites ...@@ -81,11 +81,12 @@ their own variant of process expansions (**@()**) which splits outputs by whites
arithmetic logic is more feature-complete, supports floating-point math, and handles larger arithmetic logic is more feature-complete, supports floating-point math, and handles larger
numbers; and Ion supports methods in the same manner as the [Oil shell](http://www.oilshell.org/). numbers; and Ion supports methods in the same manner as the [Oil shell](http://www.oilshell.org/).
- [Variable Expansions](expansions/variable.html) [Expansions](ch05-00-expansions.html)
- [Process Expansions](expansions/process.html) - [Variable Expansions](ch05-01-variable.html)
- [Brace Expansions](expansions/brace.html) - [Process Expansions](ch05-02-process.html)
- [Arithmetic Expansions](expansions/arithmetic.html) - [Brace Expansions](ch05-03-brace.html)
- [Method Expansions](expansions/methods.html) - [Arithmetic Expansions](ch05-04-arithmetic.html)
- [Method Expansions](ch05-05-method.html)
## Slicing Syntax ## Slicing Syntax
...@@ -95,7 +96,7 @@ expanded value is an index, inclusive range, or exclusive range. This eliminates ...@@ -95,7 +96,7 @@ expanded value is an index, inclusive range, or exclusive range. This eliminates
for temporarily storing and/or piping values to other commands, instead performing the slicing at for temporarily storing and/or piping values to other commands, instead performing the slicing at
parse-time. parse-time.
[Slicing Syntax](slicing.html) [Slicing Syntax](ch06-00-slicing.html)
## Control Flow ## Control Flow
...@@ -105,6 +106,7 @@ determined by various control flow keywords, such as `if`, `while`, `for`, `brea ...@@ -105,6 +106,7 @@ determined by various control flow keywords, such as `if`, `while`, `for`, `brea
differences, such as that all blocks are ended with the `end` keyword; and the `do`/`then` differences, such as that all blocks are ended with the `end` keyword; and the `do`/`then`
keywords aren't necessary. keywords aren't necessary.
[Control Flow](flow/index.html) [Control Flow](ch07-00-flow.html)
- [Conditionals](flow/conditionals.html) - [Conditionals](ch07-01-conditionals.html)
- [Loops](flow/loops.html) - [Loops](ch07-02-loops.html)
- [Matches](ch07-03-matches.html)
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
These are features of Ion that don't belong to any specific category: These are features of Ion that don't belong to any specific category:
- [Implicit `cd`](ch03-01-implicitcd.md) - [Implicit `cd`](ch03-01-implicitcd.html)
- [XDG App Directories](ch03-02-xdg.md) - [XDG App Directories](ch03-02-xdg.html)
- [Quoting Rules](ch03-03-quotation.md) - [Quoting Rules](ch03-03-quotation.html)
- [Multi-line Arguments](ch03-04-multiargs.md) - [Multi-line Arguments](ch03-04-multiargs.html)
- [Multi-line Comments](ch03-05-multicomments.md) - [Multi-line Comments](ch03-05-multicomments.html)
- [General Tips](ch03-06-general.html)
...@@ -6,8 +6,8 @@ their own variant of process expansions (**@()**) which splits outputs by whites ...@@ -6,8 +6,8 @@ their own variant of process expansions (**@()**) which splits outputs by whites
arithmetic logic is more feature-complete, supports floating-point math, and handles larger arithmetic logic is more feature-complete, supports floating-point math, and handles larger
numbers; and Ion supports methods in the same manner as the [Oil shell](http://www.oilshell.org/). numbers; and Ion supports methods in the same manner as the [Oil shell](http://www.oilshell.org/).
- [Variable Expansions](expansions/variable.html) - [Variable Expansions](ch05-01-variable.html)
- [Process Expansions](expansions/process.html) - [Process Expansions](ch05-02-process.html)
- [Brace Expansions](expansions/brace.html) - [Brace Expansions](ch05-03-brace.html)
- [Arithmetic Expansions](expansions/arithmetic.html) - [Arithmetic Expansions](ch05-04-arithmetic.html)
- [Method Expansions](expansions/methods.html) - [Method Expansions](ch05-05-method.html)
...@@ -6,5 +6,6 @@ determined by various control flow keywords, such as `if`, `while`, `for`, `brea ...@@ -6,5 +6,6 @@ determined by various control flow keywords, such as `if`, `while`, `for`, `brea
differences, such as that all blocks are ended with the `end` keyword; and the `do`/`then` differences, such as that all blocks are ended with the `end` keyword; and the `do`/`then`
keywords aren't necessary. keywords aren't necessary.
- [Conditionals](flow/conditionals.html) - [Conditionals](ch07-01-conditionals.html)
- [Loops](flow/loops.html) - [Loops](ch07-02-loops.html)
- [Matches](ch07-03-matches.html)
# Control Flow
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment