class MarkdownExec::FCB
def format_multiline_body_as_title(body_lines)
- 
        (String)- Formatted title.
Parameters:
- 
        body_lines(Array) -- The lines of body content.
def format_multiline_body_as_title(body_lines) body_lines.map.with_index do |line, index| index.zero? ? line : " #{line}" end.join("\n") << "\n" end