unified

Project: josemarluedke/remark-hbs

Package: remark-hbs@0.4.1

  1. Remark plugin that allows writing markdown with Ember handlebars templates
  1. remark 195
  2. unified 160
  3. plugin 128
  4. markdown 114
  5. remark-plugin 72
  6. ember 2

remark-hbs

Remark plugin that allows writing markdown with Ember handlebars templates.

Install

pnpm add remark-hbs

Note: remark-hbs is an ESM-only package and requires Node.js ^20.19.0 || >=22.12.0.

Usage

Say we have the following markdown file, example.md:

# Lorem ipsum

<MyComponent @myArg={{this.isTesting}}>
  This is my component
</MyComponent>

And our script, example.js, looks as follows:

import fs from 'node:fs';
import { unified } from 'unified';
import markdown from 'remark-parse';
import hbs from 'remark-hbs';
import html from 'remark-html';

const template = unified()
  .use(markdown)
  .use(hbs)
  .use(html, { sanitize: false })
  .processSync(fs.readFileSync('example.md'))
  .toString();

console.log(template);

Now, running node example.js yields:

<h1>Lorem ipsum</h1>
<MyComponent @myArg={{this.isTesting}}>
  This is my component

</MyComponent>

Limitations

<Something
  class="something"
>
</Something>

License

This project is licensed under the MIT License