help: add some bold table headings.

flac
John Benediktsson 2020-02-13 15:07:15 -08:00 committed by Steve Ayerhart
parent 905d01dbc3
commit dac129aa4c
No known key found for this signature in database
GPG Key ID: 5BFD39C5359E967D
3 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ $nl
$nl $nl
"Coming back to the example in the beginning of this article, the following series of steps occurs as the code is evaluated:" "Coming back to the example in the beginning of this article, the following series of steps occurs as the code is evaluated:"
{ $table { $table
{ "Action" "Stack contents" } { { $strong "Action" } { $strong "Stack contents" } }
{ "10 is pushed on the stack." { $snippet "10" } } { "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" } } { { "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" } } { { "5 is pushed on the stack." } { $snippet "100 5" } }

View File

@ -13,7 +13,7 @@ ARTICLE: "conventions" "Conventions"
{ $heading "Glossary of terms" } { $heading "Glossary of terms" }
"Common terminology and abbreviations used throughout Factor and its documentation:" "Common terminology and abbreviations used throughout Factor and its documentation:"
{ $table { $table
{ "Term" "Definition" } { { $strong "Term" } { $strong "Definition" } }
{ "alist" { "an association list; see " { $link "alists" } } } { "alist" { "an association list; see " { $link "alists" } } }
{ "assoc" { "an associative mapping; see " { $link "assocs" } } } { "assoc" { "an associative mapping; see " { $link "assocs" } } }
{ "associative mapping" { "an object whose class implements the " { $link "assocs-protocol" } } } { "associative mapping" { "an object whose class implements the " { $link "assocs-protocol" } } }
@ -49,7 +49,7 @@ $nl
{ $heading "Word naming conventions" } { $heading "Word naming conventions" }
"These conventions are not hard and fast, but are usually a good first step in understanding a word's behavior:" "These conventions are not hard and fast, but are usually a good first step in understanding a word's behavior:"
{ $table { $table
{ "General form" "Description" "Examples" } { { $strong "General form" } { $strong "Description" } { $strong "Examples" } }
{ { $snippet { $emphasis "foo" } "?" } "outputs a boolean" { { $link empty? } } } { { $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" } "!" } { "a variant of " { $snippet "foo" } " which mutates one of its arguments" } { { $link append! } } }
{ { $snippet "?" { $emphasis "foo" } } { "conditionally performs " { $snippet { $emphasis "foo" } } } { { $links ?nth } } } { { $snippet "?" { $emphasis "foo" } } { "conditionally performs " { $snippet { $emphasis "foo" } } } { { $links ?nth } } }

View File

@ -8,7 +8,7 @@ ARTICLE: "help.home" "Factor documentation"
{ $recent-searches } { $recent-searches }
{ $heading "Recently visited pages" } { $heading "Recently visited pages" }
{ $table { $table
{ "Words" "Articles" "Vocabs" } { { $strong "Words" } { $strong "Articles" } { $strong "Vocabs" } }
{ { $recent recent-words } { $recent recent-articles } { $recent recent-vocabs } } { { $recent recent-words } { $recent recent-articles } { $recent recent-vocabs } }
} }
; ;