module Jekyll::Filters::Pry

Public Instance Methods

pry(input, *args) click to toggle source

Pry into the input and args

Example usage:

{{ site.posts | pry }}

   # File lib/jekyll/filters/pry.rb
11 def pry(input, *args)
12   require 'pry'
13 
14   binding.pry
15 
16   input
17 end