diff --git a/lib/jekyll/document.rb b/lib/jekyll/document.rb index e2778863..f35cdb0e 100644 --- a/lib/jekyll/document.rb +++ b/lib/jekyll/document.rb @@ -371,6 +371,10 @@ module Jekyll end end + def respond_to_missing?(method, *) + data.key?(method.to_s) || super + end + private def merge_categories!(other) if other.key?("categories") && !other["categories"].nil?