]> gitweb.factorcode.org Git - factor.git/blob - basis/unicode/control-pictures/control-pictures-docs.factor
Promote this to basis
[factor.git] / basis / unicode / control-pictures / control-pictures-docs.factor
1 ! Copyright (C) 2017 Pi.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: help.markup help.syntax strings ;
4 IN: unicode.control-pictures
5
6 HELP: control-pictures
7 { $values
8     { "string" string }
9 }
10 { $description "Transforms C0 control characters into their corresponding Control Picture block codepoints." } ;
11
12 ARTICLE: "unicode.control-pictures" "Control Pictures"
13 "The " { $vocab-link "unicode.control-pictures" } " vocabulary provides a utility word " { $link control-pictures } " for transforming characters in the nonprintable " { $url "http://www.unicode.org/charts/PDF/U0000.pdf" "ASCII C0 block" } " to their representations in the " { $url "http://www.unicode.org/charts/PDF/U2400.pdf" "Control Pictures" } " block. It has no effect on any other characters."
14 ;
15
16 ABOUT: "unicode.control-pictures"