clartaq

clartaq ·

vsch/flexmark-java

Hooks into wikilinks extension rendering?

Hmmm... I think you are right. My request handler knows how to respond to URLs of that form. But I'm abusing the rules for constructing URLs in a way that no third party software would be aware of. I'll rework the routing based on query strings, which I ...

vsch/flexmark-java

Hooks into wikilinks extension rendering?

The HTML doesn't change. It's <a href="About">About</a> for the "About" page, for example. That is the HTML produced by a wikilink typed into a page or one generated by the program as described.

Here's the HTML for the page generated to show all wiki pa...

vsch/flexmark-java

Hooks into wikilinks extension rendering?

I was finally able to get back to this. Things mostly work with one problem
I'll get to in a moment.

I ended up writing an AttributeProvider and associated HtmlRendererExtension.
(I put them in a gist here
if you are interested.)

They do exact...

vsch/flexmark-java

Hooks into wikilinks extension rendering?

Thanks for the quick, helpful response! I'll give it a try.