Espen Hovlandsdal

Results 122 comments of Espen Hovlandsdal

This will also fix that annoying "`RoutingContext` has been renamed to `RouterContext`."-warning - would really love to see this merged soon :+1:

I'd be more than happy to accept a PR for this 👍

Because of the way the commonmark parser is built, this one is pretty tricky to solve, unfortunately. Would love some help on this if someone has time.

Basically, when encountering `foo bar`, the parser yields four tokens: 1. `Text` with the literal `foo` 2. `InlineHtml` with the literal `` 3. `Text` with the literal `bar` 4. `InlineHtml`...

The issue is basically that you'd need to pull in an HTML parser in order to properly handle this. Let's imagine you have this HTML: ```html Some *bold* text ```...

Well, even if you pull in an HTML parser (which will add significant weight), you'll still have to figure out how to deal with all the edge cases, as I...

Hi Kent! For sure, things would be simpler if inline HTML was just emitted as one big chunk. I don't think this is consistent with other markdown parsers though, and...

First of all, thanks a ton for showing interest in helping with this!

Sure, I'm super busy at work these days, but I'll see if I can find the time to get it up to speed sometime soon.

Huge divergence from master, so I decided to just do a clean branch from master. Anyway, check out https://github.com/rexxars/react-markdown/tree/remark if you're interested.