Raffael Herzog

Results 15 issues of Raffael Herzog

Collections, Options etc. should have a `tap(Consumer

feature
«vavr-collection»

It's not fatal and it has to be sneakyThrown, because it's a checked exception. `InterruptedException` is meant to be handled gracefully, but `Try` unconditionally sneakyThrowing any `InterruptedException` actually impedes graceful...

question

It's a bit complicated. :) So, I'll just make an example: ```java @Value.Immutable public abstract class MyImmutable { public abstract ImmutableMyImmutable parent(); } ``` Throughout the generated class, we'll see...

JDK9 introduced a new doclet API. First research showed, that the MarkdownDoclet is still doable with the new API. It even looks like it actually makes things easier. I just...

The doclet was originally a quick'n'dirty hack. This is still visible and should be fixed. We also need to split up the project a bit more: * *core* or *engine*...

Ugly! Use - %APPDATA% on Windows - $XDG_CACHE_HOME (default to ~/.cache) on UNIX [see XDG spec](https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html) - Mac? Provide a cache/config location to doclets from the doclet's API.

Read taglet classes from `META-INF/services/ch.raffael.doclets.pegdown.mdtaglet.MarkdownTaglet`. Also consider moving GistMarkdownTaglets to a external module.

Tables are currently ugly.

CSS/HTML

Wiki-style links should be rendered as link tags. I.e., ˋ[[Foo#bar() foobar]]ˋ should become ˋ{@link Foo#bar() foobar}ˋ. The current way Wiki-style links are rendered doesn't make much sense, this is how...

enhancement