I use make4ht to generate html file with css from latex document. And when I manually execute this command
make4ht main-tex -c tex4ht.cfg
it compiles part of LaTeX, then freeze with new line and "?" mark waiting for any key pressed, then it compiles next part and few times situation repeats. After that I have fully generated html file. That was a easy part, now if I want to use ie. Jenkins to do that, make4ht generates only first part of html, and skip everything that would be generated after freeze. Does anyone know why it behave in such way, and how to force it to build everything without key pressing?
MWE (copied from LaTeX Error: \theHchapter undefined when using tex4ht with hyperref and appendix package)
\documentclass{article}
\usepackage[toc,page]{appendix}
\usepackage{hyperref}
\begin{document}
\author{me}
\title{title}
\date{\today}
\maketitle
\tableofcontents
\section{first}
some text
\section{two}
some text in section 2
\begin{appendices}
\section{somesection inside appendices}
some text again
\end{appendices}
\end{document}
