]> gitweb.factorcode.org Git - factor.git/commitdiff
help: add some bold table headings.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 13 Feb 2020 23:07:15 +0000 (15:07 -0800)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 13 Feb 2020 23:07:15 +0000 (15:07 -0800)
basis/help/cookbook/cookbook.factor
basis/help/handbook/handbook.factor
basis/help/home/home-docs.factor

index 3352f3e9bfebd25f106b0c2a2f9ff7fc324414b0..16920ce5034db1188b0069662c27855a8328ee17 100644 (file)
@@ -16,7 +16,7 @@ $nl
 $nl
 "Coming back to the example in the beginning of this article, the following series of steps occurs as the code is evaluated:"
 { $table
-    { "Action" "Stack contents" }
+    { { $strong "Action" } { $strong "Stack contents" } }
     { "10 is pushed on the stack." { $snippet "10" } }
     { { "The " { $link sq } " word is executed. It pops one input from the stack - the integer 10 - and squares it, pushing the result." } { $snippet "100" } }
     { { "5 is pushed on the stack." } { $snippet "100 5" } }
index 405d0ff5068dfb4180eb30243a25477b6fc55d16..dc46d38e960fcb763d34572a6e0568b92348482b 100644 (file)
@@ -13,7 +13,7 @@ ARTICLE: "conventions" "Conventions"
 { $heading "Glossary of terms" }
 "Common terminology and abbreviations used throughout Factor and its documentation:"
 { $table
-    { "Term" "Definition" }
+    { { $strong "Term" } { $strong "Definition" } }
     { "alist" { "an association list; see " { $link "alists" } } }
     { "assoc" { "an associative mapping; see " { $link "assocs" } } }
     { "associative mapping" { "an object whose class implements the " { $link "assocs-protocol" } } }
@@ -49,7 +49,7 @@ $nl
 { $heading "Word naming conventions" }
 "These conventions are not hard and fast, but are usually a good first step in understanding a word's behavior:"
 { $table
-    { "General form" "Description" "Examples" }
+    { { $strong "General form" } { $strong "Description" } { $strong "Examples" } }
     { { $snippet { $emphasis "foo" } "?" } "outputs a boolean" { { $link empty? } } }
     { { $snippet { $emphasis "foo" } "!" } { "a variant of " { $snippet "foo" } " which mutates one of its arguments" } { { $link append! } } }
     { { $snippet "?" { $emphasis "foo" } } { "conditionally performs " { $snippet { $emphasis "foo" } } } { { $links ?nth } } }
index c5b4e494f226bc531026007212695167711eef4b..3d525a9243beab1832099bb5f7ac528bfd8b91a9 100644 (file)
@@ -8,7 +8,7 @@ ARTICLE: "help.home" "Factor documentation"
 { $recent-searches }
 { $heading "Recently visited pages" }
 { $table
-  { "Words" "Articles" "Vocabs" }
+  { { $strong "Words" } { $strong "Articles" } { $strong "Vocabs" } }
   { { $recent recent-words } { $recent recent-articles } { $recent recent-vocabs } }
 }
 ;