Created
June 14, 2013 20:48
-
-
Save steckel/5785133 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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