Amon Otis Poston
a software engineer
[who's currently focued on North Korea and startups]

How to parse markdown into html with Laravel
by Montana Poston on 07/03/23

$html = app(Parsedown::class)->text($markdownString);

Explaination

Laravel uses this package to parse emails written in markdown into html. The class it uses is exposed and can be used by you (the dev).

Thank you to Italo Baeza Cabrera whose medium article taught me this.

Read more of his new article on the laravel markdown parser.