From f14ee592afb2b92507afb0b24b93633f9635750b Mon Sep 17 00:00:00 2001 From: jutty Date: Sun, 14 Dec 2025 21:01:48 -0300 Subject: [PATCH] Remove 'no connections' message, minor docs tweaks --- static/graph.toml | 5 +++-- templates/node.html | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/static/graph.toml b/static/graph.toml index 1436cd3..78a3053 100644 --- a/static/graph.toml +++ b/static/graph.toml @@ -26,7 +26,7 @@ If you need longer text, it's more convenient to use triple-quoted syntax: [nodes.Computer] text = \""" -A computer is a machine capable of executing user-supplied instructions. +A computer is a machine capable of executing arbitrary instructions. \""" Nodes can have connections between each other. @@ -76,7 +76,8 @@ If unspecified, the default is ./static/graph.toml. You can combine these options as you wish: en -h localhost -p 3000 -en --host localhost -p 3003 --graph ./graph.toml +en -p 3003 --host localhost --graph ./graph.toml +en --g ./graph.toml -p 1312 """ diff --git a/templates/node.html b/templates/node.html index 21d461a..cd7f759 100644 --- a/templates/node.html +++ b/templates/node.html @@ -47,7 +47,5 @@ {% endif %} - {% else %} - Node has no connections. {% endif %} {%- endblock body %}