Open JohnCoene opened 7 years ago
Not entirely sure this is how it should work but using markdown to include images doesn't add the bootstrap img-responsive class.
img-responsive
Not responsive: ![my_image](images/myimage.png)
![my_image](images/myimage.png)
Responsive: img(src = "images/myimage.png", alt="my_image", class="img-responsive")
img(src = "images/myimage.png", alt="my_image", class="img-responsive")
You should be able to do this:
![my_image](images/myimage.png){.img-responsive}
Not entirely sure this is how it should work but using markdown to include images doesn't add the bootstrap
img-responsive
class.Not responsive:
![my_image](images/myimage.png)
Responsive:
img(src = "images/myimage.png", alt="my_image", class="img-responsive")