Robert Panzer

Results 148 comments of Robert Panzer

The project is simply generated from this document: https://github.com/istio-ecosystem/wasm-extensions/blob/master/doc/write-a-wasm-extension-with-cpp.md I just read up a bit on relooper, I don't fully understand though how it would help with exception handling? It...

I just tried a small sample build with a document that contains a plantuml macro and it worked fine for me: I used this build.gradle with Gradle 6.7: ```gradle buildscript...

OK, you're right. Just reproduced it: It works when testing a WAR, the test class is automatically added to WEB-INF/classes. But it is not added to an EAR. (That's what...

@ALRubinger At least in chapter 05 the test class is added to the deployment ;-) ``` public static WebArchive deploy() { return ShrinkWrap.create(WebArchive.class) .addAsLibraries( ConferenceDeployments.conference().addClasses( ConferenceTestCase.class, ``` Maybe it's worth...

Sorry, no real idea why it should be looking at the file system if GEM_HOME is not set. Is the class path maybe pointing to this path?

A couple of years I did this example: https://github.com/robertpanzer/asciidoctorj-extensions-lab/blob/master/source-block-macro/README.adoc I am not sure if it still works, but maybe it helps to show one way how it could be done.

Hi Dominic, Asciidoctor core only loads templates from directories in the filesystem. That means all we can do from AsciidoctorJ is to also extract some archive to the filesystem and...

That's too funny, because I had exactly that example on my mind :D While reviewing a PR last week that upgraded SnakeYaml I saw this comment from Andy: https://stackoverflow.com/a/75875594/2779488 However,...

That's weird. Intuitively I would say that I see such circular references every day when debugging any problem in whatever software. Or am I totally wrong here? Also looking at...

The current Preprocessor API in AsciidoctorJ unfortunately requires to work on the Reader that was passed as an argument. Only the next major version of AsciidoctorJ will support creating a...