Skip to content

Instantly share code, notes, and snippets.

View matt-mcdaniel's full-sized avatar

Matt McDaniel matt-mcdaniel

View GitHub Profile
@SelrahcD
SelrahcD / gist:7042692
Last active December 25, 2015 21:29
AngularJs directive for PrismJs
angular.module('Prism', []).
directive('prism', [function() {
return {
restrict: 'A',
link: function ($scope, element, attrs) {
element.ready(function() {
Prism.highlightElement(element[0]);
});
}
}