How can I easily disable all ligatures, when converting my LaTex-file to html?
For the html-generation I am using the command-line
mk4ht htlatex file.tex 'xhtml,charset=utf-8' ' -cunihtf -utf8 -cvalidate' '-d./html/'
My latex document begins with the following lines
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[none]{hyphenat}
\usepackage{microtype}
As suggested in How can I completely suppress ligatures? I tried the following options for microtype: \DisableLigatures[f]{encoding = *, family = * }
The html-output though still contains characters fi.
hyphenatandmicrotypemake much sense forhtlatex. – egreg Jun 15 '12 at 14:56htlatexbut the document is intented for compilation usingpdflatex. I only need to create an html once my document is ready. – Peter Pablo Jun 18 '12 at 08:22