Once in a while I need to convert a *.tex file into html (to import it into a Word document). Usually I use tex4ht, recently I learned about make4ht. I have much respect for the current maintainer and appreciate his work.
Once in a while I typeset a *.tex file using LuaLaTeX and the fontspec package, of course.
Now I tried to convert the *.tex file with fontspec to html, which failed, because tex4ht seems not to support fontspec.
It was not troublesome at all to comment out all commands related to fontspec and to insert the packages I need for pdftex.
My questions:
- Is it true that tex4ht and friends don't support fontspec yet? I found the lua4ht project and this answer here. But this isn't quite easy going...
- If we can't use fontspec in files with fontspec (=LuaTeX), for the time being we will need fontenc and whatever -- true?
Or did I get something completely wrong?
make4ht --helpsays-l,--lua Use lualatex for document compilationso it looks like luatex support should be there, assume(?) that includes fontspec? – David Carlisle Aug 06 '19 at 20:55