markdown-css
markdown-css copied to clipboard
Support for Images
As much as I like kittens... This adds the markdown for images too:
.markdown img {
display: inline;
content: "";
height: 1px
}
.markdown img:before {
content: " ")";
display: inline;
color: #333333;
}
If you change the less file to this it should work:
img {
display: inline;
content: "";
&:before {
content: ~'" ")"';
display: inline-block;
}
}