summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylan Kammer <taylan.kammer@gmail.com>2026-06-01 21:58:43 +0200
committerTaylan Kammer <taylan.kammer@gmail.com>2026-06-01 21:58:43 +0200
commitd993104e86f2e2ec8ff1036648e34eebdca0d58d (patch)
treee65c5e2ea84b1ebc964f946848abdd122ce8a563
parent724ac8ae394675a78c2977c6e35555b210256e01 (diff)
Lil doc update.
-rw-r--r--doc/c1/1-parse.md2
-rw-r--r--doc/c1/index.md2
-rw-r--r--html/index.md13
-rwxr-xr-xupdate-html.sh4
4 files changed, 9 insertions, 12 deletions
diff --git a/doc/c1/1-parse.md b/doc/c1/1-parse.md
index 4eb5776..cb3db82 100644
--- a/doc/c1/1-parse.md
+++ b/doc/c1/1-parse.md
@@ -1,7 +1,5 @@
# Parser for Data
-*For an exact specification of the grammar, see [grammar](grammar/).*
-
Zisp s-expressions represent an extremely minimal set of data types; only that
which is necessary to strategically construct more complex values:
diff --git a/doc/c1/index.md b/doc/c1/index.md
index af01cea..6cec369 100644
--- a/doc/c1/index.md
+++ b/doc/c1/index.md
@@ -3,7 +3,7 @@
This chapter goes through the processes involved in reading source
code, running it, and optionally compiling it.
-1. [Parse](1-parse.html)
+1. [Parse](1-parse.html) (see also [grammar](grammar/))
The parser receives a stream of bytes and transforms them into a
minimal set of data types with very little processing.
diff --git a/html/index.md b/html/index.md
index f8fe67c..d8fdcba 100644
--- a/html/index.md
+++ b/html/index.md
@@ -32,25 +32,24 @@ would normally have to go through to achieve things that are rather
simple to do in higher level languages, at the cost of not having
optimal run-time behavior due to missing details.
-This language doesn't actually exist yet. You are merely reading the
-ramblings of a madman. A little bit of code is here already though:
+I've started drafting a User Manual of sorts here:
-[Source code](https://git.tkammer.de/zisp/)
+* [Docs](doc/)
The design process of Zisp happens in large part through little notes
and moderate-length blog-style articles that I write down to clarify
my own thoughts:
-[Notes](notes/)
+* [Notes](notes/)
Some of these may be quite insightful, while others are ramblings.
Some are outdated with regards to code that I've since written to
actually implement the ideas, since writing code often gives you
another perspective on how to best do things.
-I've also started drafting a User Manual of sorts, though it's mostly
-empty right now:
+This language doesn't actually exist yet. You are merely reading the
+ramblings of a madman. A little bit of code exists already though:
-[Docs](docs/)
+* [Source code](https://git.tkammer.de/zisp/)
Don't expect much; this is ultimately a hobby project!
diff --git a/update-html.sh b/update-html.sh
index 79745e4..d7b48e8 100755
--- a/update-html.sh
+++ b/update-html.sh
@@ -40,14 +40,14 @@ cp html/style.css html/zisp/
shopt -s globstar
-for file in notes/*.md docs/**/*.md
+for file in notes/*.md doc/**/*.md
do
dest=html/zisp/${file%.md}.html
mkdir -p "${dest%/*}"
md2ht "$file" "$dest"
done
-for file in docs/**/*.txt
+for file in doc/**/*.txt
do
dest=html/zisp/$file
mkdir -p "${dest%/*}"