Robin Stocker

Results 144 comments of Robin Stocker

Prepared a fix in PR https://github.com/commonmark/commonmark-java/pull/270

Fix released in 0.20.0: https://github.com/commonmark/commonmark-java/blob/main/CHANGELOG.md#0200---2022-10-20

Hey! Yeah sounds like a useful extension. Looks like there's a couple of existing syntaxes, from here: https://alexharv074.github.io/2018/08/28/auto-generating-markdown-tables-of-contents.html * `{:toc}` * `[[_TOC_]]` * `[toc]` And this one doesn't seem to...

Also, it would probably need to be paired with the heading anchor extension (https://github.com/atlassian/commonmark-java#heading-anchor) to be able to link to headers.

Apparently adding a module-info breaks Android usage, quoted from [Stephen's blog post](http://blog.joda.org/2018/03/jpms-negative-benefits.html?m=1): > And just for kicks, your project can no longer be used by Android (as the team there...

I'm not a fan of having a separate branch that needs to be kept up to date. Releasing a duplicate set of artifacts would be possible for Java 9+ (with...

I feel you. At the same time I'm also being asked to support Android, e.g. see #124. > Once Java 11 (the next LTS) is out, we should look at...

Hey everyone. I think it's time we modularized commonmark-java itself. I don't think Android tooling has a problem with module-info files anymore (that was the original blocker). I'm gonna look...

I'm pretty sure I'm not gonna pick this up in the near future. But if someone else wants to have a go at it, I'm willing to mentor. Help wanted...

> Every inlineParser would be able to pick where last InlineParser left up to. Yes, that's the rough idea (similar to block parsers). > By make inline parsing extendable, do...