:memo: md.html
Markdown inside HTML
Put the following two magical lines into top of HTML file, then you can write Markdown after this and browser renders Markdown automatically.
<!doctype html><meta charset="utf-8"><script src="https://unpkg.com/@makenowjust/md.html@0.2.1"></script><noscript>
<!-- vim: set ft=markdown: -->
# Hello `md.html` World!
See md.html demo!
Usage
Put the following two magical lines into top of HTML file.
Stable:
<!doctype html><meta charset="utf-8"><script src="https://unpkg.com/@makenowjust/md.html@0.2.2"></script><noscript>
<!-- vim: set ft=markdown: -->
HEAD:
<!doctype html><meta charset="utf-8"><script src="https://makenowjust.github.io/md.html/main.js"></script><noscript>
<!-- vim: set ft=markdown: -->
Features
- Don't need preprocess for publishing Markdown.
- Support footnote reference.
- Render soft breaks as
<br>
. - Emoji support (e.g. convert
:memo:
to 📝) - Set
target="_blank"
property to external links. - Math expression support (inline
$...$
and block $$⏎...⏎$$
) with KaTeX - Set slug
id
to h1-6
tags and append anchor icon. - Syntax highlighting
- Set title via frontmatter
title
property.
See examples!
Development
See maidfile.md
tasks.
Special Thanks
This project is built with many other packages.
and all other dependencies... Thank you!!
License
MIT (c) 2018 TSUYUSATO "MakeNowJust" Kitsune