cwjohan / markdown-to-html

Command-line utility to convert Github Flavored Markdown to HTML.
MIT License
236 stars 86 forks source link

Does not process image width properly #45

Open ralyodio opened 3 years ago

ralyodio commented 3 years ago

There are two ways to specify image size in markdown

![My Image](url =250x) width of image will be 250px (height is auto)

There's also a way to specify css with some flavors:

![My Image](url)(:width: '25rem') neither of these methods work properly.