-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extension for Sign languages #45
Comments
Fascinating idea! I think that you need to start the require path with Of course, this would be partially solved by fixing #44, which we desperately need. I'd say that the emoji inline macro is pretty close to this one as well, except that it is an inline macro instead of a block macro. So take a look at that one too. |
asciidoctor-extensions-lab$ asciidoctor -r ./lib/gist-block-macro/extension.rb ./lib/gist-block-macro/sample.adoc With sample.html: (...)
<h1>Gist Block Macro Extension</h1>
</div>
<div id="content">
<div class="paragraph">
<div class="title">Guard setup to live preview AsciiDoc output</div>
<p>gist::mojavelinux/5546622[]</p>
</div>
</div>
(...) I don't know... but for if I think it's missing the registration somewhere in the code. How does it know that we have an new extension available without it? For me, the emoji isn't working ether: (...)
<h1>Emoji Inline Macro Extension</h1>
</div>
<div id="content">
<div class="paragraph">
<p>Faster than a emoji:turtle[1x]!</p>
</div>
<div class="paragraph">
<p>This is an example of how you can emoji:heart[lg] Asciidoctor and Twitter Emoji.</p>
</div>(...) |
Hello @edusantana
The registration is done by the Ruby files in the root of the So the command line for
|
If my extension returns How can I call the code to produce the video after that? |
There are two approaches you can inside the block processor. Before I mention them, it's important to understand that the purpose of the block processor is to contribute zero or more nodes to the AST tree during parsing. The first approach is to return an AST node, in this case a video node. That code would look something like: attrs['poster'] = 'youtube'
attrs['target'] = 'xjxjTMBoNjE'
return create_block parent, :video, nil, attrs, {} The second approach is to parse the new content inside the processor. That code would look something like: parse_content parent, 'video::https://www.youtube.com/watch?v=xjxjTMBoNjE[]'
return nil
|
Btw, Asciidoctor Diagram uses the first approach. See https://github.com/asciidoctor/asciidoctor-diagram/blob/master/lib/asciidoctor-diagram/extensions.rb#L132-L189 |
It's working... Now the work will be to create and populate a nice repository, where users will be able no navigate and search for signs to use. The inline macro will be used to create links, and the block to display videos. |
👍 |
Hi,
I'm trying to write a extension for placing videos from a Sign Language. It would be some thing like this:
libras.yaml:
sample.adoc:
It would read
casa
fromlibras.yaml
and translate to:It would be more complex, but this would be a start.
Can someone help me?
Here's what I have done so far:
gist-block-macro
and replacegist
tosign
:sample.adoc
-r
:TreeBlockMacro
. I changed the sample file to directory of mine, and tested it:Can someone guide me? What I am doing wrong?
The text was updated successfully, but these errors were encountered: