cakebake / markdown-themeable-pdf

ARCHIVED. NOT MAINTAINED. Themeable Markdown Converter (Print to PDF, HTML, JPEG or PNG)
https://atom.io/packages/markdown-themeable-pdf
133 stars 37 forks source link

image is on two pages #12

Closed sander76 closed 9 years ago

sander76 commented 9 years ago

Maybe not a bug, but not a desired result either. I have a big image. This is image is stretched across two pages. Somehow it should be scaled down to fit one page ?

cakebake commented 9 years ago

Good idea, but I have currently no idea to solfe this for webkit print :/ Do you have any suggestions?

sander76 commented 9 years ago

Me neither. It appears markdown-pdf doesn't have this issue..

cakebake commented 9 years ago

Yes, because no CSS or HTML control exists for it. I look around for an alternative solution.

cakebake commented 9 years ago

Now you control image width and height in markdown.

![test](image.png =100x200)

is interpreted as

<p><img src="image.png" alt="test" width="100" height="200"></p>