#935·parsedown

Pukes if filename contains a space

Author: threed-factory-storeCreated May 10, 2026Updated May 11, 2026

I'm trying to convert MD to HTML: $parser = new Parsedown(); $bodyHtml = $parser->line($markdown);

My markdown contains:

![My Pdf File](Declarations Page.pdf.png)

Parsedown does not convert this to html.

Edit:

Even if I add angle brackets, it still doesn't work...

![My Pdf File](<Declarations Page.pdf.png>)

In both cases, it sends the text through unchanged.