1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH otl2html 1 "March 5, 2005"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
otl2html \- converts vimoutliner outline to HTML
.SH SYNOPSIS
.B otl2html
.RI [ filename ]
.SH DESCRIPTION
This manual page documents briefly the
.B otl2html
Python script.
.P
.B otl2html
is a
is a
.BR python (1)
script that converts a
.BR vimoutliner (1)
outline to HTML.
.P
.B otl2html
script called just with filename of the processed outline will
produce HTML document on standard output.
.SH OPTIONS
.\".TP
.\".B -t
.\".I type
.\"Specify the format type.
.\".P
.\".RS
.\"Types:
.\".TP
.\".B simple
.\"uses HTML tags <h1> through <h9>
.\".TP
.\".B bullets
.\"uses HTML tags <ul> and <li>.
.\".TP
.\".B numeric
.\"uses HTML tags <ol> and <li> for 1.1.1
.\".TP
.\".B roman
.\"uses HTML tags <ol> and <li> for I.I.I
.\".TP
.\".B alpha
.\"uses HTML tags <ol> and <li> for A.A.A
.\".TP
.\".B indent
.\"uses HTML tags <ol> and <li>
.\".P
.\"Not compatible with -s or -S.
.\".RE
.TP
.B -p
Presentation: slide show output for use with HtmlSlides.
.TP
.B -D
First-level is divisions (<div> </div>) for making pretty web
pages.
.TP
.B -s
.I sheet
Use the specified style sheet with a link.
.\"Not compatible with -t.
.TP
.B -S
.I sheet
Include the specified style sheet in-line the output.
For encapsulated style.
.\"Not compatible with -t.
.TP
.B -T
The first line is not the title. Treat it as outline data
.TP
.B -c
Hide comments (line with [ as the first non-whitespace
character.
Ending with ] is optional.
.TP
.B -C
.I copyright
Override the internal copyright notice with the one supplied in
the quoted string following this flag.
Single or double quotes can be used.
.TP
.B -v
Print version (RCS) information.
.TP
.B -H
Show the file syntax help.
.SH SEE ALSO
.BR vim (1),
.BR python (1)
.ig
.br
The script is fully documented on
.UR http://www.troubleshooters.com/projects/vimoutliner/index.htm
http://www.troubleshooters.com/projects/vimoutliner/index.htm
.UE
..
.SH AUTHOR
This manual page was written by Matej Cepl <matej@ceplovi.cz>,
for the Debian GNU/Linux system (but may be used by others).
|