On 8/15/2022 3:48 PM, Karl Berry wrote:
URL:
<http://puszcza.gnu.org.ua/bugs/?576>
Summary: \HCode alternative that copies verbatim?
Project: tex4ht
Submitted by: karl
Submitted on: Mon Aug 15 20:48:15 2022
Category: None
Priority: 5 - Normal
Severity: 5 - Normal
Status: None
Privacy: Public
Assigned to: None
Originator Email:
Open/Closed: Open
Discussion Lock: Any
_______________________________________________________
Details:
Michal, or anyone, is there an alternative to \HCode that outputs its argument
completely verbatim, ideally including line breaks?
It seems \HCode outputs a surrounding <p> and </p>.
It seems \HCode is inscrutably defined in the scripts, such as htlatex. At
first glance, the definition makes no sense to me at all :).
Thanks.
just FYI,
I just tried
----------------------
\begin{document}
This is a test
\ScriptEnv{html}
{\NoFonts\hfill\break}
{\EndNoFonts}
\begin{html}
This is HTML
It should not have any p around it.
\end{html}
-----------------
Compiled using make4ht -ulm default -a debug foo.tex "htm"
But it still generated HTML with <P>...</P> around the HTML
------------
</head><body>
<!-- l. 16 --><p class='noindent'>This is a test
</p><!-- l. 22 --><p class='noindent'>
This is HTML
It should not have any p around it.
</p>
</body>
--------------------------
--Nasser