Img Size in Md

Styling images in markdown I’ll refer to the StackOverflow answer on changing image size in md. The simplest and dependency free method is just to use a CSS selector to style the image. This removes the need for markdown processors that would (with more code) end up in the same place. In Hugo this would mean adding the styles to the assets folder and writing them up this way: img[alt=drawing] { width: 200px; }. ...