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

block quotes, unordered and ordered lists, table column headings not working

Open dcvice1967 opened this issue 7 years ago • 3 comments

I am using webpack raw-loaded to load the md content into the source prop. Using content from the live demo, i compared the output and several of the features seemd to be ignored, while some are working.

dcvice1967 avatar May 16 '18 21:05 dcvice1967

same problem. inline code and block quotes have no style

wseven7677 avatar Nov 06 '18 02:11 wseven7677

Just tried this and having the same problem. Is anyone looking at this?

ajf214 avatar Dec 08 '18 22:12 ajf214

Not sure what the issue here is, since it seems the rendered md content has the correct html tags when I checked the page through developer tools. Block quotes weren't working for me, so I manually overwrote the style:

blockquote {
        margin-left: 32px;
        border-left: 4px solid #CCC;
        padding-left: 16px;
    }

AmrKafina avatar Jan 04 '19 17:01 AmrKafina