Skip to content
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

Make asset tags accept nested liquid blocks #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ def render(context)
config = site.config['asset_pipeline'] || {}

# Run Jekyll Asset Pipeline
pipeline, cached = Pipeline.run(@nodelist.first, @markup.strip, site.source,
manifest = render_all(@nodelist, context)
return nil if manifest.strip.empty?
pipeline, cached = Pipeline.run(manifest, @markup.strip, site.source,
site.dest, self.class.tag_name, self.class.output_type, config)

if pipeline.is_a?(Pipeline)
Expand Down
5 changes: 5 additions & 0 deletions spec/extensions/liquid/liquid_block_extensions_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ def self.tag_name
def self.output_type
'.baz'
end

def render_all(list, context)
# it's againt the purpose of render_all; here we're just mocking
list.first
end
end
end

Expand Down