From 532be451559273d759cd375b7a72be01072430f6 Mon Sep 17 00:00:00 2001 From: tilleul Date: Mon, 11 Sep 2017 22:36:47 +0200 Subject: [PATCH] Formatting ... (mostly) --- README.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0dc58f0..a1d83b5 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,13 @@ This is a very simple NodeJS (javascript) program that allows to renumber BASIC It was aimed at Applesoft Basic at first, but it probably works with other BASICs as well ... haven't tried ... The script will read a text file (containing one BASIC line beginning with an integer per line, each line separated by \n\r or \n) and it will renumber all lines and renumber the following: -- every GOTO ### -- every GOSUB ### -- every ON ERR GOTO #, ##, ###, ... -- same for ON ERR GOSUB -- every IF (condition) THEN ### +- every `GOTO ###` +- every `GOSUB ###` +- every `ON ERR GOTO #, ##, ###, ...` +- same for `ON ERR GOSUB` +- every `IF (condition) THEN ###` -Not supported: GOTO/GOSUB to a VARIABLE. Like: GOTO MY_VAR. +Not supported: GOTO/GOSUB to a VARIABLE. Like: `GOTO MY_VAR`. This script does not evaluate "MY_VAR" along your code .. ## Usage: Obviously you need NodeJS first. The good news is that it's available for Windows/Mac/Linux. See https://nodejs.org/ for installation instructions. @@ -22,6 +22,8 @@ Once NodeJS is installed, run a command-line/prompt/whatever-you-call-it and typ `node path/to/renumber.js path/to/basic/file [path/to/new/basic/file] [line_increment]` +Just type `node path/to/renumber.js` for a little bit more explanation ... + It's as simple as that... If you have requests or suggestions, don't hesitate ...