Web Component for Markdown using Remark.
This library and the component it contains should be considered beta and experimental at this time, and should not be used in production unless you are comfortable with this risk.
ES Modules and Web Components are stable and readily available now. We should be utilizing these tools and moving the web forward in an open manner.
You like writing in Markdown. Instead of writing and rendering your Markdown to HTML ahead of time, speed up your time to publish and let the platform render your markdown.
Using remark in a web component allows you to publish your writing quickly and easily, without giving up the ability to customize that Remark and the Unified ecosystem enables.
Due to the nature of Web Components this can be used in any framework (React, Vue, etc.)
This package is ESM only.
It can be installed using npm and a bundler:
npm install webcomponent-markdown
Or added directly to a page using a npm CDN (skypack, etc.):
<script
type="module"
src="https://cdn.skypack.dev/webcomponent-markdown"
></script>
After installation simply add the <remark-markdown>
element to your web page and provide the URL of or embed a copy of your Markdown document:
The element will fetch and render the content of your document when provided with a valid src
attribute.
<remark-markdown src="./index.md"></remark-markdown>
The element will render out an embedded copy of your document when provided in a script
child, with a "content"
slot.
<remark-markdown>
<script slot="content" type="text/markdown">
# Hello world
This is an example of an embedded Markdown document, rendered using Remark!
</script>
</remark-markdown>
If the element is provided both a source URL and an embedded document, it will only render the embedded document and not fetch and render the specified URL.
The renderer can be extended using both Remark Plugins and Rehype Plugins by providing the component with an Array of your plugins with the remarkPlugins
and rehypePlugins
attributes.
An example use case from a React-like environment:
import remarkFrontmatter from "remark-frontmatter";
import emoji from "remark-emoji";
import rehypePicture from "rehype-picture";
import slug from "rehype-slug";
const Markdown = ({ content }) => (
<remark-markdown
remarkPlugins={[remarkFrontmatter, emoji]}
rehypePlugins={[
[
rehypePicture,
{
jpg: { webp: "image/webp" },
png: { svg: "image/svg+xml" },
},
],
slug,
]}
>
<script slot="content" type="text/markdown">
{content}
</script>
</remark-markdown>
);
Copyright 2021 Kepler Sticka-Jones. Licensed ISC.