module ContextExt

(The MIT License)

Copyright © 2018 Vagiz Duseev

Public Instance Methods

find_variable(key) click to toggle source
Calls superclass method
# File lib/jekyll-dry.rb, line 6
def find_variable(key)
  variable = super(key)
  unless variable
    variable = registers[:site].fragments[key]
  end
  variable
end