Skip to content

Instantly share code, notes, and snippets.

@steckel
Created June 14, 2013 20:48
Show Gist options
  • Save steckel/5785133 to your computer and use it in GitHub Desktop.
Save steckel/5785133 to your computer and use it in GitHub Desktop.
require 'yaml'
class FrontMatter
YAML_REGEX = /\A(---\s*\n.*?\n?)^(---\s*$\n?)/m
attr_accessor :source, :results, :output
def initialize(source)
@source = source
parse
end
private
def parse(source)
if source =~ YAML_REGEX
front_matter = YAML.load($1)
output = source.sub(YAML_REGEX, "")
end
@results = front_matter || {}
@output = output || source
end
end
require 'yaml'
class FrontMatter
YAML_REGEX = /\A(---\s*\n.*?\n?)^(---\s*$\n?)/m
attr_accessor :source, :results, :output
def initialize(source)
@source = source
@results, @output = parse(source).values_at :results, :output
end
private
def parse(source)
if source =~ YAML_REGEX
front_matter = YAML.load($1)
output = source.sub(YAML_REGEX, "")
end
{ results: (front_matter || {}), output: (output || source), }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment