Everything tagged with #markdown
First post with my custom #markdown parser.
Here's a little sample code block to show off the <code>
syntax highlighting.
1<!DOCTYPE html>
2<html lang='en-US'>
3 <head>
4 <meta ht-include='partials/head.html'>
5 <meta itemprop='template.name' content='default'>
6
7 <!-- Web Components -->
8 <script src='/js/components/relative-time.js'></script>
9 </head>
10 <body>
11 <nav ht-include='partials/nav.html'></nav>
12 <content-whitespace></content-whitespace>
13 <section id='post' data-color-scheme='light'>
14 <article ht-include='partials/post-article'></article>
15 </section>
16 <content-whitespace></content-whitespace>
17 <footer ht-include='partials/footer.html' data-color-scheme='dark'></footer>
18 <section ht-include='partials/tail.html'></section>
19 </body>
20</html>
This is all table stakes stuff, but I'm pumped to get it all wired up!