miaolz123 / vue-markdown

A Powerful and Highspeed Markdown Parser for Vue
https://miaolz123.github.io/vue-markdown/
MIT License
1.89k stars 257 forks source link

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

Open dcvice1967 opened 6 years ago

dcvice1967 commented 6 years ago

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.

wseven7677 commented 5 years ago

same problem. inline code and block quotes have no style

ajf214 commented 5 years ago

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

AmrKafina commented 5 years ago

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;
    }