class Markdown::Parser
- Markdown::Parser
- Reference
- Object
Defined in:
markdown/parser.crConstructors
Instance Method Summary
- #append_double_newline_if_has_more
- #check_link(str, pos, bytesize)
- #classify(line)
- #count_pounds(line)
- #empty?(line)
- #has_closing?(char, count, str, pos, bytesize)
- #has_code_spaces?(line)
- #horizontal_rule?(line)
-
#join_next_lines(continue_on = :none, stop_on = :none)
Join this line with next lines if they form a paragraph, until next lines don't start another entity like a list, header, etc.
- #line_is_all?(line, char)
- #newline
- #next_line_is_all?(char)
- #next_line_is_not_intended?
- #next_line_starts_with_backticks?
- #next_lines_empty_of_code?
- #parse
- #previous_line_is_not_intended_and_starts_with_bullet_list_marker?(prefix)
- #process_line(line)
- #process_paragraph
- #render_code
- #render_fenced_code
- #render_header(level, line, increment)
- #render_horizontal_rule
- #render_ordered_list
- #render_paragraph
- #render_prefix_header(level, line)
- #render_quote
- #render_unordered_list(prefix = '*')
- #starts_with_backticks?(line)
- #starts_with_bullet_list_marker?(line, prefix = nil)
- #starts_with_digits_dot?(line)
Constructor Detail
Instance Method Detail
Join this line with next lines if they form a paragraph, until next lines don't start another entity like a list, header, etc.