The package compiles and installs the program hoedown, which can process input Markdown documents and generate HTML output using the built–in HTML renderer. Synopsis:
hoedown [OPTION]... [FILE]
Process the Markdown in ‘FILE’ (or standard input) and render it to standard output, using the Hoedown library. Parsing and rendering can be customized through the options below. The default is to parse pure markdown and output HTML.
Main options:
-n
N--max-nesting=
N-t
--toc-level=
N--html
--html-toc
-T
--time
-i
N--input-unit=
N-o
N--output-unit=
N-h
--help
-v
--version
Block extensions:
Span extensions:
Other flags:
Negative flags:
HTML-specific options:
Flags and extensions can be negated by prepending ‘no’ to them, as in --no-tables, --no-span or --no-escape. Options are processed in order, so in case of contradictory options the last specified stands.
When ‘FILE’ is ‘-’, read standard input. If no ‘FILE’ was given, read standard input. Use -- to signal end of option parsing. Exit status is: ‘0’ if no errors occurred, ‘1’ with option parsing errors, ‘4’ with memory allocation errors or ‘5’ with I/O errors.
The package compiles and installs the program smartypants, which translates plain ASCII punctuation characters into “smart” typographic punctuation HTML entities. smartypants performs the following transformations:
<p>"Hello" 'World'!</p>
is converted to:
<p>“Hello” ‘World’!</p>
<p>``Hello World!''</p>
is converted to:
<p>“Hello World!”</p>
<p>Trouble--maker---that is what you are!</p>
is converted to:
<p>Trouble–maker—that is what you are!</p>
Synopsis:
smartypants [OPTION]... [FILE]
Apply SmartyPants smart punctuation to the HTML in ‘FILE’ (or standard input), and output the resulting HTML to standard output.
Main options:
-T
--time
-i
N--input-unit=
N-o
N--output-unit=
N-h
--help
-v
--version
Options are processed in order, so in case of contradictory options the last specified stands.
When ‘FILE’ is ‘-’, read standard input. If no ‘FILE’ was given, read standard input. Use ‘--’ to signal end of option parsing. Exit status is: ‘0’ if no errors occurred, ‘1’ with option parsing errors, ‘4’ with memory allocation errors or ‘5’ with I/O errors.