In the following MWE, which I believe works fine with xelatex, I observe a blank space where I'm trying to insert a nested table. I don't see any warnings or errors in the log file.
Are there any necessary patches I need to apply to properly display the nested tables?
While my final compile command is far more complex and makes use of much more of make4ht's capabilities my issues can be obtained by compiling with the following make4ht command line: make4ht.exe -u --format "odt" "file.tex"
\documentclass{article}
\begin{document}
Test
\begin{tabular}{l l }
A1 & B1 \\
A2 & B2 \\
A3 & B3 \\
\end{tabular}
\begin{tabular}{ l l}
\hline
Outer column & Detail column\\
\hline
a &
\begin{tabular}{l l }
A1 & B1 \\
A2 & B2 \\
A3 & B3 \\
\end{tabular}
\\
\hline
b
&
\begin{tabular}{l l }
A1 & B1 \\
A2 & B2 \\
A3 & B3 \\
\end{tabular}
\\
\hline
d & etc \\
\hline
\end{tabular}
\end{document}
