module Checklister # Parse a markdown file and return a hash of params. # # @example # { # title: "Title", # body: "## Mardown Body context\n## Checklist\nMardown Body checklist" # } # class Parser # @param [String] file_path the path of the markdown file to parse def initialize(file_path, title = nil) @file_content = File.open(file_path).read @title = title end # @return [Hash] a hash of params def to_params checklist = [] @file_content.each_line do |line| # Extract a title, when we find the first