erusev / parsedown

Better Markdown Parser in PHP

Home Page:https://parsedown.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Maximum image size?

HeadStudios opened this issue · comments

Any way to set the maximum width of any images passed? I'm outputting to PDF and it gets messy when large images are linked to. Thnks!

Use my plugin then set imageAttributes property:

$Parsedown->imageAttributes = [
    'style' => 'height: auto; max-width: 100%;'
];

Thank you so much! That was super quick too - much appreciated.