Login  Register

Re: Finally, a draft of the Asciidoctor extension API has landed!

Posted by mojavelinux on Aug 23, 2013; 10:17am
URL: https://discuss.asciidoctor.org/Finally-a-draft-of-the-Asciidoctor-extension-API-has-landed-tp455p507.html

Alex,

First, that's exciting news!

I think the problem you are running into is that I haven't yet put in the code that allows the processor to be specified as a String. I just noted that down on my list and will update the code later today, along with a test. Stay tuned.

One of the reasons I'm really excited about the Java integration with extensions is because it will help us work out a contract for these APIs...both the core APIs and the extension APIs. I'm open to all suggestions...we just need to keep bouncing the ideas around.

Cheers,

-Dan


On Tue, Aug 20, 2013 at 1:52 PM, asotobu [via Asciidoctor :: Discussion] <[hidden email]> wrote:
Dan I have just coded a first draft of extensions for AJI but I have some questions or a behavior which I am not pretty sure it is normal, let me show in code, maybe you find exactly the problem:

I have created a method  which acts as a proxy to a Ruby class (the Asciidoctor Java class):

```ruby
require 'java'
require 'asciidoctor/extensions'

// some code for rendering documents

        def preprocessor(processor)
            puts processor
                Asciidoctor::Extensions.register do |document|
                  puts "Hi"
   preprocessor processor
  end
    end

```

'processor' is a java.lang.String which in fact would be the full qualified name of the extension, for example: org.asciidoctor.extensions.SamplePreprocessor

The problem is that when I execute the preprocessor method, the first puts prints the full qualified name of the class, but the puts "Hi" is never shown. I could understand that the String that is send to Asciidoctor is not treated correctly and we should think other possibilities (this is not a problem), but maybe I am doing something wrong?

Of course this is a test that will be refactored to an ExtensionRegistry class.


If you reply to this email, your message will be added to the discussion below:
http://discuss.asciidoctor.org/Finally-a-draft-of-the-Asciidoctor-extension-API-has-landed-tp455p487.html
To start a new topic under Asciidoctor :: Discussion, email [hidden email]
To unsubscribe from Asciidoctor :: Discussion, click here.
NAML



--
Dan Allen | http://google.com/profiles/dan.j.allen