erusev / parsedown

Better Markdown Parser in PHP
https://parsedown.org
MIT License
14.76k stars 1.12k forks source link

Maximum image size? #842

Closed HeadStudios closed 1 year ago

HeadStudios commented 1 year ago

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!

taufik-nurrohman commented 1 year ago

Use my plugin then set imageAttributes property:

$Parsedown->imageAttributes = [
    'style' => 'height: auto; max-width: 100%;'
];
HeadStudios commented 1 year ago

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