Crate rins_markdown_parser

Source

Structs§

  • Parser structure which is used to parse text with the grammar defined in src/grammar.pest. It is automatically generated by pest_derive based on the specified grammar.

Enums§

  • Enum representing possible errors encountered during parsing or file operations.

Functions§

  • Converts the markdown file at md_path to an HTML file at html_path.
  • Parses the input string according to a specific rule and returns the resulting pairs.
  • Parses the given input markdown string and returns a pest::iterators::Pairs of rules.
  • Converts the given markdown text to HTML and prints it to the console.
  • Converts provided text in markdown format to HTML, returning a vector of HTML lines.
  • Converts a pest::iterators::Pair representing a single rule into an HTML string.