Structs§
- Parser structure which is used to parse text with the grammar defined in
src/grammar.pest. It is automatically generated bypest_derivebased on the specified grammar.
Enums§
- Enum representing possible errors encountered during parsing or file operations.
Functions§
- Converts the markdown file at
md_pathto an HTML file athtml_path. - Parses the
inputstring according to a specific rule and returns the resulting pairs. - Parses the given
inputmarkdown string and returns apest::iterators::Pairsof rules. - Converts the given markdown
textto HTML and prints it to the console. - Converts provided
textin markdown format to HTML, returning a vector of HTML lines. - Converts a
pest::iterators::Pairrepresenting a single rule into an HTML string.