]> gitweb.factorcode.org Git - factor.git/blob - extra/pdf/pdf-docs.factor
Switch to https urls
[factor.git] / extra / pdf / pdf-docs.factor
1 ! Copyright (C) 2011-2012 John Benediktsson
2 ! See https://factorcode.org/license.txt for BSD license
3
4 USING: help.markup help.syntax strings ;
5
6 IN: pdf
7
8 HELP: text-to-pdf
9 { $values { "str" string } { "pdf" string } }
10 { $description "Converts " { $snippet "str" } " into PDF instructions." } ;
11
12 HELP: file-to-pdf
13 { $values { "path" string } { "encoding" "an encoding" } }
14 { $description "Converts " { $snippet "path" } " into a PDF, saving to " { $snippet "path.pdf" } "." } ;