Estevão Soares dos Santos

Results 68 comments of Estevão Soares dos Santos

Modifications: - Update markdown.js so that it uses the new showdown syntax >= 1.0.0 - Update bower.json: - use showdown version >=1.0.0 - add twitter-extension as a dev dependency -...

You can't really prevent XSS attacks in showdown, before the input is fully parsed into HTML, because markdown provides a number of ways to inject a script that are very...

you need to include the xml file in the same directory

That is indeed planned for the next version, 3.0

To add further, listener extensions are working, albeit in "beta" since they are not fully tested yet.

That error "maximum nesting of 10 spans reached!!!" is a safeguard against an infinite loop. In version 2.0, due to changes in the parser logic, is no longer needed, so...

I will have to look into this carefully, since the metadata module is a very simplified version of yml.

According to markdown spec, in lists, [sub-blocks need to be indented 4 spaces][1]. That includes sub-lists: ``` - foo - bar ``` However, almost all implementations (for historical reasons) accept...

I just noticed that with the last update the Demo Page is broken (options won't stick). I will fix that as fast as possible

In a way, the innards of hashHTMLBlock subparser is already exposed. You can hook to the event `makehtml.hashHTMLBlocks.before` with a listener extension and replicate the functionality of the [HashHTMLBlock][1] parser...