markdown-css icon indicating copy to clipboard operation
markdown-css copied to clipboard

CSS for making regular HTML look like plain-text markdown.

Results 5 markdown-css issues
Sort by recently updated
recently updated
newest added

~~~ .css .markdown a:before {content:'['} .markdown a:after {content:'](' attr(href) ')'} .markdown a[title]:after {content:'](' attr(href) ' "' attr(title) '")'} ~~~

It's hard to describe. Checkout the online demo: http://jsbin.com/eyeyat/3/edit

#### Hey, maintainer(s) of mrcoles/markdown-css! We at [VersionEye](https://www.versioneye.com/signup?promo_code=BOWER) are working hard to keep up the quality of the bower's registry. We just finished our initial analysis of the quality of...

As much as I like kittens... This adds the markdown for images too: ``` .markdown img { display: inline; content: ""; height: 1px } .markdown img:before { content: "![" attr(alt)...