Isaac Muse

Results 654 comments of Isaac Muse

It's an idea at least. I think the current algorithm is more robust than the regex was, but while it is nice to be able to support any amount of...

There are areas where there may still be recursion, and possibly some areas that are hard for us to eliminate currently. And yes with recursion, you can get crashes when...

> There also seem to be problems in the horizontal direction When I mentioned horizontal, I was referring to horizontal nesting, which does not perform as badly as it doesn't...

If there's a legitimate problem then we'll of course fix it. We'll have to double check what the algorithm is doing. If parsing time exploding then it would most likely...

> `markdown.markdown('[]()' * 20000)` I briefly looked at this as I found the statement odd that we were matching this 20000 * 20000. While I won't rule out that maybe...

@andersk, yes, I understood your original statement. The opening post is definitely related to the pattern to some extent, but I wanted to make sure `markdown.markdown('[]()' * 20000)` was not...

Yeah, better patterns is always good.

It's going to be hard to find a render that does things exactly offline like GitHub unless you want to use their Markdown parser...which I think is Redcarpet? Maybe I'm...

It is a limitation (or I should say according to spec) of the Python Markdown library which is used to render the HTML from Markdown. There is no easy way...

I'll explain how highlight works for mdpopups. It puts the code in a hidden output panel and let's Sublime highlight it, and then uses logic to look at the scope...