Hi
I am using tex4ht for publishing html documents from latex documents (command htlatex)
To get a blue chapter, I added to the preamble the following :
\usepackage{color}
\let\myChapter\chapter
\renewcommand\chapter[1]{%
\myChaper[#1]{\protect\textcolor{blue}{#1}}%
}
\let\myTOC\tableofcontents
\renewcommand{\tableofcontents}{%
\let\chapter\myChapter
\myTOC
\renewcommand\chapter[1]{%
\myChapter[##1]{\protect\textcolor{blue}{##1}}%
}%
}
To my surprise, Chapter 1 starts before the table of contents. It includes only a
star and the real chapter 1 becomes chapter 2.
Pierre