ember-cli-markdown-it-templates

0.0.3 • Public • Published

ember-cli-markdown-it-templates Build Status

This addon allows using .md and markdown-files as templates in your Ember.js projects. Internally this addon uses markdown-it-compiler and markdown-it-ember.

Compatibility

  • Ember.js v3.12 or above
  • Ember CLI v2.13 or above
  • Node.js v10 or above

Installation

ember install ember-cli-markdown-it-templates

Usage

With ember-cli-markdown-it-templates you can write your template files in markdown-format:

<!-- components/test.md -->
# Headline
 
This is a markdown template

This can now be used like a regular component in your Ember.js-application:

{{!-- application.hbs --}}
<Test />

and will render the following:

<h1>Headline</h1>
<p>This is a markdown template</p>

Markdown and Ember.js interoperability

In addition to allowing you to create markdown-templates you can also include Ember.js-components like regular html in your markdown-templates.

Example:

# Headline
 
This is a markdown template
 
<Button
  {{on "click" this.handleClick}}
  data-test-ember-button-in-markdown
>
  Click me
</Button>
 
<div>
  {{#if this.showResult}}
    <div data-test-result>
      Result
    </div>
  {{/if}}
</div>

Result:

Please be aware that you will need to wrap {{if}}, {{each}} and other curly-invocations into a wrapper-div. You will receive a build error otherwise.

Why would I want this?

When you want to create content heavy applications - e.g. a blog that is prerendered via prember - you can use this addon to make it easier for you to create your content.

Mixing markdown-content and Ember.js-components can also be useful when you want to document component behavior or component usage patterns in a styleguide.

Contributing

See the Contributing guide for details.

Thanks and Kudos

Thanks to gossi for the idea for this and the markdown-it-compiler- and markdown-it-ember-projects.

License

This project is licensed under the MIT License.

Readme

Keywords

Package Sidebar

Install

npm i ember-cli-markdown-it-templates

Weekly Downloads

23

Version

0.0.3

License

MIT

Unpacked Size

7.8 kB

Total Files

6

Last publish

Collaborators

  • levelbossmike