pub const CONSOLE_HTML_FORMAT: &str = r#"<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>rusty-rich</title>
<style>
body {{
margin: 0;
padding: 0;
}}
pre.rich-html {{
font-family: {font_family};
font-size: {font_size}px;
line-height: {line_height};
color: {foreground};
background-color: {background};
margin: 0;
padding: 16px 24px;
white-space: pre-wrap;
word-wrap: break-word;
overflow-x: auto;
}}
</style>
</head>
<body>
<pre class="rich-html">
{code}
</pre>
</body>
</html>"#;Expand description
The HTML document template used by export_html.