ember-cli-eg-code-highlightdeprecated

A quick and easy to use code highlighting component for Ember using highlight.js

Usage no npm install needed!

<script type="module">
  import emberCliEgCodeHighlight from 'https://cdn.skypack.dev/ember-cli-eg-code-highlight';
</script>

README

eg-code-highlight

A quick and easy to use code highlighting component for Ember using highlight.js

Installation

To install eg-code-highlight simply run npm install ember-cli-eg-code-highlight --save-dev.

Use

Using eg-code-highlight is incredibly easy! The eg-code-highlight component takes too arguments: code and language. To create this, in your template you can do this.

{{eg-code-highlight code=codeHighlightExample language='hbs'}}

This works for multiple languages, the controller for this example is:

import Ember from 'ember';
import codeHighlightExample from 'ember-cli-eg-code-highlight/text/code-highlight-example';
import controllerCode from 'ember-cli-eg-code-highlight/text/controller-code';

export default Ember.Controller.extend({
  codeHighlightExample: codeHighlightExample,
  controllerCode: controllerCode
});