From: John Benediktsson Date: Mon, 31 Oct 2022 04:18:22 +0000 (-0700) Subject: help.syntax: treat $url differently X-Git-Tag: 0.99~1048 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=f983c39b6344fc90685c05a3a63d1882e33ce12d help.syntax: treat $url differently --- diff --git a/basis/help/syntax/syntax.factor b/basis/help/syntax/syntax.factor index b45bfd3ee7..3e6256acbb 100644 --- a/basis/help/syntax/syntax.factor +++ b/basis/help/syntax/syntax.factor @@ -113,7 +113,7 @@ DEFER: HELP{ : help-text? ( word -- ? ) { - $description $snippet $emphasis $strong $url $heading + $description $snippet $emphasis $strong $heading $subheading $syntax $class-description $error-description $var-description $contract $notes $curious $deprecated $errors $side-effects $content @@ -121,7 +121,7 @@ DEFER: HELP{ } member-eq? ; : help-code? ( word -- ? ) - { $example $unchecked-example $code } member-eq? ; + { $example $unchecked-example $code $url } member-eq? ; : help-values? ( word -- ? ) { $values $inputs $outputs } member-eq? ;