This MWE properly displays subsections in the TOC but when I create an epub with tex4ebook -l main.tex the TOC only goes as deep as the sections. How can I make it include subsections?
\documentclass{memoir}
\begin{document}
\tableofcontents
\chapter{Chapter 1}
\section{Section 1.1}
\subsection{Subsection 1.1.1}
\subsection{Subsection 1.1.2}
\section{Section 1.2}
\subsection{Subsection 1.2.1}
\chapter{Chapter 2}
\section{Section 2.1}
\subsection{Subsection 2.1.1}
\subsection{Subsection 2.1.2}
\section{Section 2.2}
\subsection{Subsection 2.2.1}
\subsection{Subsection 2.2.2}
\end{document}

