I am trying to create a HTML to Latex parser in C#.
One of the problems I am having is converting something like
I generate the following LateXHello there mate, you ok?
Code: Select all
hello \bf{\it{there}} mate, you \underline{ok?}
I tried LyX to see its LaTeX output and I got all Bold.
The LyX code was
Code: Select all
\emph{hello} \textbf{\emph{there}} mate, you \underbar{ok?}
Please Help!!