UNPKG

foundation-apps

Version:

A responsive, Angular-powered framework for web apps from ZURB.

11 lines (9 loc) 227 B
angular.module('markdown', []) .directive('markdown', function() { return { restrict: 'A', link: function(scope, element, attrs, controller) { element.html(marked(element.html())); } }; });