-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use package luaxml
for default LaTeX renderer prototypes
#532
Conversation
@michal-h21: With the code from this PR, I can typeset the following document \documentclass{article}
\usepackage[content_blocks, raw_attribute]{markdown}
\begin{filecontents}[overwrite, nosearch, noheader]{example_input.html}
<b>foo</b> <i>bar</i>
\end{filecontents}
\begin{document}
\begin{markdown}
Raw text span: `<b>foo</b> <i>bar</i>`{=html}
Raw code block:
``` {=html}
<b>foo</b> <i>bar</i>
```
Content block:
/example_input.html
\end{markdown}
\end{document} Processing the document with LuaLaTeX using the command Processing the document with TeX4ht using the command <!DOCTYPE html>
<html lang='en-US' xml:lang='en-US'>
<head><title></title>
<meta charset='utf-8' />
<meta content='TeX4ht (https://tug.org/tex4ht/)' name='generator' />
<meta content='width=device-width,initial-scale=1' name='viewport' />
<link href='example.css' rel='stylesheet' type='text/css' />
<meta content='example.tex' name='src' />
</head><body>
<!-- l. 2 --><p class='noindent'>Raw text span: <b>foo</b> <i>bar</i>
</p><!-- l. 3 --><p class='indent'> Raw code block:
</p><p><b>foo</b> <i>bar</i>
</p><!-- l. 5 --><p class='indent'> Content block:
</p><p><b>foo</b> <i>bar</i>
</p></body>
</html> I will appreciate your code review by the end of the next week. Otherwise, we should be ready for a release. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can confirm that the code works, I don't see any errors or problems
Tasks
CHANGES.md
.Closes #469.