vue-markdown
vue-markdown copied to clipboard
A Powerful and Highspeed Markdown Parser for Vue
I have this: But when the method `afterRenderContent` is triggered the HTML elements are still not there. I would like to do DOM HTML elements manipulation after the rendering but...
Is there any way to enable heading IDs you can link to? GitHub does this, for instance, by creating a slug from the heading content and putting it into the...
When the `img `rendered in the `div`, its size doesn't adapt to the parent `div's `width, if this img over the div's width, it will exceed the div. And setting...
I try to render this data in https://miaolz123.github.io/vue-markdown/ this error come up ``` Errors compiling template: tag has no matching end tag. 354| 355| 356| ### \ | ^^^^^^ 357|...
**Goal:** Be able to display markdown text without formatting **Example:** ``` # Heading # 1 text that is *bold* and **italic*** `*Formatting may not match text` ``` **Normal output:** #...
parse formula: x^2. But 2 shows left-bottom of x instead of showing right-top. If I don't add Katex css lib, there will be 2 formulas, first one is correct which...
Hello, I have locale implemented like this: `{{ q[`answer_${locale}`] }}` Problem is, when locale is updated text inside stays the same. I couldn't find any workarounds and that's why I...
Is it possible to provide a default configuration for all instances of the component? I know I can override the default (e.g.) `linkify` value per instance, but I would like...
It does not matter what I define the last level to be, the package appears to overwrite what I define if it is not `1` greater than `toc-first-level`. Example: ```...
When i attach a class to the `vue-markdown` component it is not being styled accordingly. Example: ``` vue-markdown(:source="mydata", class="vue-md") import VueMarkDown from 'vue-markdown' export default { components: { VueMarkDown }...