diff options
author | June McEnroe <june@causal.agency> | 2019-02-06 23:13:50 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-02-06 23:13:50 -0500 |
commit | 8263662b614876f121cb6a1c0db86678004e8073 (patch) | |
tree | 74757d45e35c5ce860e94a12cdb72af02f066ea8 /bin/man1 | |
parent | Update neovim to 0.3.4 on Darwin (diff) | |
download | src-8263662b614876f121cb6a1c0db86678004e8073.tar.gz src-8263662b614876f121cb6a1c0db86678004e8073.zip |
Add hi syntax highlighter
Diffstat (limited to 'bin/man1')
-rw-r--r-- | bin/man1/hi.1 | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/bin/man1/hi.1 b/bin/man1/hi.1 new file mode 100644 index 00000000..5ed72061 --- /dev/null +++ b/bin/man1/hi.1 @@ -0,0 +1,62 @@ +.Dd February 6, 2019 +.Dt HI 1 +.Os +. +.Sh NAME +.Nm hi +.Nd syntax highlighter +. +.Sh SYNOPSIS +.Nm +.Op Fl f Ar format +.Op Fl l Ar lang +.Op Ar file +.Nm +.Fl c +. +.Sh DESCRIPTION +.Nm +highlights the contents of a +.Ar file +or standard input +and formats it +on standard output. +. +.Pp +The arguments are as follows: +.Bl -tag -width Ds +.It Fl c +Compile all regular expressions and exit. +.It Fl f Ar format +Set the output format. +The default +.Ar format +is +.Cm ansi . +.It Fl l Ar lang +Set the input language. +If a +.Ar file +is provided, +.Ar lang +may be inferred from its name. +.El +. +.Pp +The following languages are supported: +.Cm c . +. +.Pp +The output formats are as follows: +.Bl -tag -width "html-document" +.It Cm ansi +ANSI terminal escape codes. +.It Cm html +HTML +.Sy <pre> +fragment with +.Sy <span> +classes. +.It Cm html-document +HTML document with default styles. +.El |