use crateLatexNode;
use crategenerate_html;
use crateparse_latex;
/// Converts a LaTeX string to HTML.
///
/// # Example
/// ```
/// use late2htm::convert_latex_to_html;
///
/// let html = convert_latex_to_html("\\textbf{Bold Text}");
/// println!("{}", html);
/// ```
/// Converts a list of parsed LaTeX nodes to HTML.
///
/// This is an internal helper used by `convert_latex_to_html`.