-
The
‘info’
command
line
option
adds
in
the
log
file
information
about
configurable
constructs.
xhlatex source "html,info"
Environments of latex
---------------------
\ConfigureEnv{...}.........................4
#1 environment name
#2 before env
#3 after env
#4 before underlying list
#5 after underlying list
#2 and #3 are ignore when they are both empty as well as
when there is no underlying list
\documentclass{article}
\begin{document}
\begin{titlepage}
A sample source
LaTeX file.
\end{titlepage}
\begin{enumerate}
\item First item
\item Second item
\end{enumerate}
\end{document}
|
\Preamble{html}
\begin{document}
\ConfigureEnv{titlepage}
{\IgnorePar \EndP
\HCode{<table><tr><td>}}
{\EndP\IgnorePar\HCode{</td>}}
{}{}
\ConfigureEnv{enumerate}
{\IgnorePar \HCode{<td>}}
{\EndP \IgnorePar
\HCode{</td></tr></table>}}
{}{}
\Css{td {border: 1px solid black;}}
\EndPreamble
|
|