Update JSON API
[src/app-framework-demo.git] / afm-client / bower_components / foundation-apps / js / angular / vendor / markdown.js
1 angular.module('markdown', [])
2   .directive('markdown', function() {
3     return {
4       restrict: 'A',
5       link: function(scope, element, attrs, controller) {
6         element.html(marked(element.html()));
7       }
8     };
9
10 });