jekyll-bookshop 2.0.0.pre.beta.38 → 2.0.0.pre.beta.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 367c1fec8c2064692ff8562725868b4cabd0fe4dbf18cfeeb3d3d1a8e5fc2930
4
- data.tar.gz: 3d9707cc34e8fd7d386ed5af62f926ca72922faaad46f39cef6e6233ac2c1bd9
3
+ metadata.gz: 4cb4a63444288334b8343ff81309b9fde3f688a44fd2aecc3f86fbac0d7bb95f
4
+ data.tar.gz: 3b0ce33510ce05ecd390793bc9cc7a7ff92dc6636b04116e03ab5829b991dc1f
5
5
  SHA512:
6
- metadata.gz: '089b81bf2d2f576fed338459153dd0645dd0e204bbb7ef1050c84069fbcb3d910a87103f7db2a8560826af5c67d35f26bee5c7b0b5c53dd05e9888695802f776'
7
- data.tar.gz: c6cf92c48d5643b04bd20b143e6fe1e66e12b718201dad797cb3aab607b4a41bdfc1daf289989040270840fae98a26c28bfa8fef3e3d6a0f0e177ef09fb5aa9e
6
+ metadata.gz: 7810201818479c9e97f9f8c1d9a06434bda0c723e7d477886acdaab00049113d6f2330eadc42c141c8fcf80a81d326def22e5eed2e511827ddabd65453120b5a
7
+ data.tar.gz: 5eb1a28fa13be4efd71205f39c6183a83fe49d5c50aa064cc1d84233f0ac47c27f3f2d31d71dbba50f20aec22f421b0adf06e8118101b14f4de03ce4ae703a41
@@ -30,10 +30,19 @@ module JekyllBookshop
30
30
 
31
31
  partial = load_cached_partial(path, context)
32
32
 
33
+ loop_context = ""
34
+ if context.scopes[0]["forloop"]
35
+ name = context.scopes[0]["forloop"].name
36
+ index = context.scopes[0]["forloop"].index - 1
37
+ loop_context = "#{name}[#{index}]"
38
+ end
39
+
33
40
  context.stack do
34
41
  context["include"] = parse_params(context) if @params
35
42
  begin
36
- partial.render!(context)
43
+ "<!--bookshop-live name(#{file}) params(#{@params}) context(#{loop_context.gsub(/-/, '=').gsub(/=include\./, '=')}) -->
44
+ #{partial.render!(context)}
45
+ <!--bookshop-live end-->"
37
46
  rescue Liquid::Error => e
38
47
  e.template_name = path
39
48
  e.markup_context = "included " if e.markup_context.nil?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllBookshop
4
- VERSION = "2.0.0.pre.beta.38"
4
+ VERSION = "2.0.0.pre.beta.39"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-bookshop
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.pre.beta.38
4
+ version: 2.0.0.pre.beta.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudCannon