md-to-html/foo.html @ 30faa48af4ce
default tip
More
author |
Steve Losh <steve@stevelosh.com> |
date |
Mon, 19 Aug 2024 08:56:24 -0400 |
parents |
80f0db7bdfd0 |
children |
(none) |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Some Test</title>
<style type="text/css">
body {
margin:40px auto;
max-width: 800px;
line-height:1.5;
font-size:16px;
color: #222;
padding:0 10px;
font-family: serif;
}
h1,h2,h3 {
line-height:1.2
}
code {
font-size: 14px;
background-color: #eee;
border: 1px solid #ccc;
padding: 1px;
}
pre code {
border: none;
padding: none;
}
pre {
font-size: 14px;
background-color: #eee;
border: 1px solid #ccc;
padding: 1px;
overflow-x: auto;
margin: 24px 20px 24px 0px;
padding: 4px 10px;
}
a {
color: #e50053;
}
h1 {
text-align: center;
}
</style>
</head>
<body>
<h1>Some Test</h1>
<ul>
<li><a href="#example">Example</a></li>
</ul>
<h2 id="example">Example</h2>
<p>This is a test.</p>
<pre><code>Some code.</code></pre>
<p>Done testing.</p>
</body>
</html>