Skip to content

Instantly share code, notes, and snippets.

@prospectrs
Forked from mat813/summarize.rb
Created July 4, 2013 22:33
Show Gist options
  • Save prospectrs/5930615 to your computer and use it in GitHub Desktop.
Save prospectrs/5930615 to your computer and use it in GitHub Desktop.
module Jekyll
module Filters
def summarize(str, splitstr = /\s*<div id="extended">/)
str.split(splitstr)[0]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment