Eno::Error » #snippet

snippet → string

Returns a formatted excerpt of those passage(s) from the input where the error occurred.

rubybegin
  # ...
rescue Eno::Error => e
  e.snippet
  
  # returns something like ...
  #
  #   Line | Content
  #      1 | 
  # *    2 |     # a
  # *    3 |     ## b
  # >    4 |     ### c < a
  #      5 |
end

Return value

A formatted excerpt of those passage(s) from the input where the error occurred.