https://github.com/josemarluedke/ember-cli-remark-hbs
Allows compiling from markdown files to Ember handlebars templates using Remark
https://github.com/josemarluedke/ember-cli-remark-hbs
Last synced: 7 months ago
JSON representation
Allows compiling from markdown files to Ember handlebars templates using Remark
- Host: GitHub
- URL: https://github.com/josemarluedke/ember-cli-remark-hbs
- Owner: josemarluedke
- License: mit
- Created: 2020-03-26T03:56:34.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T07:25:16.000Z (almost 3 years ago)
- Last Synced: 2025-04-06T07:10:02.075Z (7 months ago)
- Language: JavaScript
- Size: 1.63 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
ember-cli-remark-hbs 
==============================================================================Ember CLI Remark allows compiling from markdown files to Ember handlebars templates using [remark](https://github.com/remarkjs/remark).
We use [remark-hbs](https://github.com/josemarluedke/remark-hbs) to keep all the handlebars code from markdown.
Compatibility
------------------------------------------------------------------------------* Ember.js v3.12 or above
* Ember CLI v2.13 or above
* Node.js v10 or aboveInstallation
------------------------------------------------------------------------------```
ember install ember-cli-remark-hbs
```Usage
------------------------------------------------------------------------------Plugins power remark, so you probably would like to add some to your
app. To support this use case, you can pass an array of plugins in `ember-cli-build.js`.```js
// ..
const app = new EmberApp(defaults, {
'ember-cli-remark-hbs': {
plugins: [
require('remark-slug'),
require('remark-autolink-headings'),
require('remark-highlight.js')
]
}
});
// ..
```Contributing
------------------------------------------------------------------------------See the [Contributing](CONTRIBUTING.md) guide for details.
License
------------------------------------------------------------------------------This project is licensed under the [MIT License](LICENSE.md).