angular-marked icon indicating copy to clipboard operation
angular-marked copied to clipboard

Markdown in AngularJS using marked.

Results 10 angular-marked issues
Sort by recently updated
recently updated
newest added

The latest version of marked has a number of improvements, including some XSS vulnerability fixes. Would it be possible to update?

`marked` `0.7.0` has a breaking change for IE11: https://github.com/markedjs/marked/issues/1585 I believe the fix for `angular-marked`, if it's being used with `marked` `0.7.0`, is to change this line: https://github.com/Hypercubed/angular-marked/blob/c10be543da2cea906230efe2f16fd73f8a96d21d/lib/angular-marked.js#L191 To: `m...

Hello, The following example (from repo's Readme) overrides the `link` renderer that is making a lot of escaping and sanitization work to avoid XSS issues. ``` app.config(['markedProvider', function (markedProvider) {...

I am getting the following error when adding the marked="" attribute to my HTML tags. `m.Renderer is not a constructor` Am I missing a dependancy or something?

marked seems quite dead, unfortunately, but someone forked it and made marked3, which is actively maintained. If this could be updated to use that, it would be swell :)

Node Security project has flagged Marked 0.3.6 as insecure. https://nodesecurity.io/advisories/531 This in turn makes angular-marked insecure, and causes our build to fail. Marked is no longer maintained by the looks...

I found myself needing some fine-grained control over the marked library, so I exposed a few extra options in angular-marked, rather than messing with the global marked library itself. Perhaps...

when i input :sparkles: :camel: :boom:, but not rendering, why?

Currently, one can configure options for the Marked renderer globally only using the `markedProvider`. It would be great if it would be possible, as an alternative, to provide options per...

I am having problems getting this to work in an app created using angular-seed. I added the following to my index.html file: `` `` In my module.js file, I have:...