1 From luc.maranget@inria.fr Tue Mar 18 12:21:13 2014 2 From: David Brydon <david@brydon.us> 3 To: Luc.Maranget@inria.fr 4 Subject: hevea bug: commented macro 5 6 Thank you for hevea! I have tried a few tools for LaTeX to html and find 7 it the best. 8 9 This is a real example from our actual books that is crashing. 10 11 I noticed it seems to parse macros after %, but it usually does not cause 12 an error. Sometimes it does. 13 14 Here is the Minimum Working Example: 15 16 \documentclass[11pt]{book} 17 18 \begin{document} 19 WORKS: 20 21 \textit{ 22 The following ... 23 } 24 25 BREAKS: 26 27 \textit{ 28 %\textbf{ 29 The following ... 30 } 31 32 \end{document} 33 34 ???