-
Notifications
You must be signed in to change notification settings - Fork 345
Copy images from unordeed and definition lists #1093
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b12f50b
Copy images from unordeed lists
nik9000 35fcccc
Definition lists too!
nik9000 51d9a9d
More careful
nik9000 09a14c0
Failing tests
nik9000 62801e0
better!
nik9000 91f78cc
The other way
nik9000 43fef0f
Merge branch 'master' into copy_images_inline_image
nik9000 8719195
IWP
nik9000 fc23850
Inline image!
nik9000 35a2388
Simplify!
nik9000 651c000
Drop test
nik9000 1ef76d6
Speeling
nik9000 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# frozen_string_literal: true | ||
|
||
## | ||
# Abstract base for implementing a converter that implements some conversions | ||
# and delegates the rest to the "next" converter. | ||
class DelegatingConverter | ||
## | ||
# Setup a converter on a document. | ||
def self.setup(document) | ||
converter = yield document.converter | ||
document.instance_variable_set :@converter, converter | ||
end | ||
|
||
def initialize(delegate) | ||
@delegate = delegate | ||
end | ||
|
||
def convert(node, transform = nil, opts = {}) | ||
# The behavior of this method mirrors Asciidoctor::Base.convert | ||
t = transform || node.node_name | ||
if respond_to? t | ||
send t, node do | ||
# Passes a block that subclasses can call to run the converter chain. | ||
@delegate.convert node, transform, opts | ||
end | ||
else | ||
@delegate.convert node, transform, opts | ||
end | ||
end | ||
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class is the real magic in this PR: instead of plugging in to asciidoctor using its plugin mechanism this plugs in using the "converter". This allows us to plug whatever behavior we need in at render time when the attributes are properly resolved.