summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-22 07:07:33 +0100
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2020-12-22 07:07:33 +0100
commit597ea6382389861cc16f494c474af8b40e3c392a (patch)
tree644985f7e22c68a4fe12dfbad29f528b89967848 /content
parent36465a7d2acb73ae2356596845994fc8814ef279 (diff)
...
Diffstat (limited to 'content')
-rw-r--r--content/_index.md4
-rw-r--r--content/fate_v1/aliases/default.md1
-rw-r--r--content/fate_v1/computations/_index.md1
-rw-r--r--content/fate_v1/declarations/_index.md1
-rw-r--r--content/fate_v1/extensions/_index.md1
-rw-r--r--content/fate_v1/instructions/_index.md1
-rw-r--r--content/fate_v1/instructions/loops/_index.md6
-rw-r--r--content/wyrd_v1/computations/_index.md1
-rw-r--r--content/wyrd_v1/extensions/_index.md1
-rw-r--r--content/wyrd_v1/instructions/_index.md1
10 files changed, 13 insertions, 5 deletions
diff --git a/content/_index.md b/content/_index.md
index f3db632..a082ffa 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -1,8 +1,8 @@
---
title: "Main"
---
-# Welcome to Tonkadur's website!
-Tonkadur is a tool to create game narratives.
+# Welcome to Tonkadur's website
+Tonkadur is a tool to create interactive narratives.
### Find out all about Tonkadur
* **Plain-text format.** Just write in your favorite editor and use your usual tools.
diff --git a/content/fate_v1/aliases/default.md b/content/fate_v1/aliases/default.md
index 9a6bd8a..1247545 100644
--- a/content/fate_v1/aliases/default.md
+++ b/content/fate_v1/aliases/default.md
@@ -1,5 +1,6 @@
---
title: Aliases
+weight: 4
---
Nearly all computations and instructions have aliases, making it easier to
write in the language when not used to it. This page provides most of them. As
diff --git a/content/fate_v1/computations/_index.md b/content/fate_v1/computations/_index.md
index 9312712..1cad064 100644
--- a/content/fate_v1/computations/_index.md
+++ b/content/fate_v1/computations/_index.md
@@ -1,5 +1,6 @@
---
title: Computations
+weight: 2
---
Computations are values. They may read from the memory, but do not modify it
(with a single exception).
diff --git a/content/fate_v1/declarations/_index.md b/content/fate_v1/declarations/_index.md
index 013d404..c079924 100644
--- a/content/fate_v1/declarations/_index.md
+++ b/content/fate_v1/declarations/_index.md
@@ -2,4 +2,5 @@
title: "Declarations"
menuTitle: "Declarations"
chapter: true
+weight: 1
---
diff --git a/content/fate_v1/extensions/_index.md b/content/fate_v1/extensions/_index.md
index 01f7127..c0598ea 100644
--- a/content/fate_v1/extensions/_index.md
+++ b/content/fate_v1/extensions/_index.md
@@ -1,4 +1,5 @@
---
title: Extensions
+weight: 5
---
This page not available yet, sorry.
diff --git a/content/fate_v1/instructions/_index.md b/content/fate_v1/instructions/_index.md
index 51066d1..ec5b413 100644
--- a/content/fate_v1/instructions/_index.md
+++ b/content/fate_v1/instructions/_index.md
@@ -1,5 +1,6 @@
---
title: Instructions
+weight: 3
---
Instructions do not return values, but modify the memory in some way or
interact with the interpreter. Computations are valid instructions, and will be
diff --git a/content/fate_v1/instructions/loops/_index.md b/content/fate_v1/instructions/loops/_index.md
index 03c0f3b..d3c8d65 100644
--- a/content/fate_v1/instructions/loops/_index.md
+++ b/content/fate_v1/instructions/loops/_index.md
@@ -17,10 +17,10 @@ Executes `[I0]` ... `[IM]`, and does so again as long as, `[BOOL]` yields
true.
### FOR
-{{< fatecode >}}(for <pre = INSTRUCTION> [BOOL] <post = INSTRUCTION> [I0 = INSTRUCTION] ... [IM = INSTRUCTION]){{< /fatecode >}}
+{{< fatecode >}}(for [PRE = INSTRUCTION] [BOOL] [POST = INSTRUCTION] [I0 = INSTRUCTION] ... [IM = INSTRUCTION]){{< /fatecode >}}
-Executes `<pre>`, then, if and as long as `[BOOL]` yields true, executes
-`[I0]` ... `[IM]` followed by `<post>`.
+Executes `[PRE]`, then, if and as long as `[BOOL]` yields true, executes
+`[I0]` ... `[IM]` followed by `[POST]`.
### FOR EACH
{{< fatecode >}}(foreach [COLLECTION] {String} [I0 = INSTRUCTION] ... [IM = INSTRUCTION]){{< /fatecode >}}
diff --git a/content/wyrd_v1/computations/_index.md b/content/wyrd_v1/computations/_index.md
index 028a82e..c4ccff0 100644
--- a/content/wyrd_v1/computations/_index.md
+++ b/content/wyrd_v1/computations/_index.md
@@ -1,5 +1,6 @@
---
title: Computations
+weight: 1
---
This page presents all the computations that can be performed in Wyrd.
Computations may access the current memory, but, with one exception, do not
diff --git a/content/wyrd_v1/extensions/_index.md b/content/wyrd_v1/extensions/_index.md
index a21559c..5ce9946 100644
--- a/content/wyrd_v1/extensions/_index.md
+++ b/content/wyrd_v1/extensions/_index.md
@@ -1,4 +1,5 @@
---
title: Extensions
+weight: 3
---
Not available in Version 1.
diff --git a/content/wyrd_v1/instructions/_index.md b/content/wyrd_v1/instructions/_index.md
index 9d43a5a..cda4fec 100644
--- a/content/wyrd_v1/instructions/_index.md
+++ b/content/wyrd_v1/instructions/_index.md
@@ -1,5 +1,6 @@
---
title: Instructions
+weight: 2
---
This page presents all the instructions that can be performed in Wyrd.
Instructions do not return values. With one exception, all instructions increase