Corrected link to GitHub Pages

This commit is contained in:
Graham Nelson 2022-04-28 16:25:04 +01:00
parent 4adc5c9c10
commit 60cc499743
4 changed files with 7 additions and 7 deletions

View file

@ -14,9 +14,9 @@ where it manages a 300,000-line code base.
Literate programming is a methodology created by Donald Knuth in the late
1970s. A literate program, or "web", is written as a narrative intended to
be readable by humans as well as by other programs. Inweb is itself written as
a web, and its human-readable form is a [companion website to this one](docs/index.html).
a web, and its human-readable form is a [companion website to this one](https://ganelson.github.io/inweb/index.html).
For the Inweb manual, see [★ inweb/Preliminaries](docs/inweb/M-iti).
For the Inweb manual, see [★ inweb/Preliminaries](https://ganelson.github.io/inweb/inweb/M-iti).
__Disclaimer__. Because this is a private repository (until the next public
release of Inform, when it will open), its GitHub pages server cannot be
@ -121,10 +121,10 @@ programs, such as the [Intest testing tool](https://github.com/ganelson/intest)
and the [Inform compiler and related tools](https://github.com/ganelson/inform).
This library is called "Foundation", and has its own web
here: [★ foundation-module](docs/foundation-module/index.html).
here: [★ foundation-module](https://ganelson.github.io/inweb/foundation-module/index.html).
A small executable for running unit tests against Foundation is also included:
[★ foundation-test](docs/foundation-test/index.html).
[★ foundation-test](https://ganelson.github.io/inweb/foundation-test/index.html).
## Testing Inweb

View file

@ -11471,7 +11471,7 @@ void Preprocessor__expand(text_stream *text, text_file_position *tfp, preprocess
text_stream *value = mr.exp[1];
text_stream *remainder = NULL;
match_results mr3 = Regexp__create_mr();
if (Regexp__match(&mr3, value, L"(%c+?) *(%C+: *%c*)")) {
if (Regexp__match(&mr3, value, L"(%c+?) *(%C+:[^/]%c*)")) {
value = mr3.exp[0];
remainder = mr3.exp[1];
}

View file

@ -356,7 +356,7 @@ So you can have |in: {WHATEVER}| but not |{WHATEVER}: this|.
text_stream *value = mr.exp[1];
text_stream *remainder = NULL;
match_results mr3 = Regexp::create_mr();
if (Regexp::match(&mr3, value, L"(%c+?) *(%C+: *%c*)")) {
if (Regexp::match(&mr3, value, L"(%c+?) *(%C+:[^/]%c*)")) {
value = mr3.exp[0];
remainder = mr3.exp[1];
}

View file

@ -11,7 +11,7 @@ programs than CWEB, and since 2004 has been the tool used by the
[Inform programming language project](https://github.com/ganelson/inform),
where it manages a 300,000-line code base.
{set name: GITHUBPAGESLINK value: docs}
{set name: GITHUBPAGESLINK value: https://ganelson.github.io/inweb}
{set name: WEBICON value: ★}
{set name: DOCICON value: ▶}