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

Vue Issue #86

Open diadal opened 5 years ago

diadal commented 5 years ago

I try to render this data in https://miaolz123.github.io/vue-markdown/ this error come up

Errors compiling template:

  tag <mark> has no matching end tag.

  354|  
  355|  
  356|  ### \<mark>
     |       ^^^^^^
  357|  
     |  
  358|  ==Marked text==
     |  ^^^^^^^^^^^^^^^
  359|  
     |  
  360|  
     |  
  361|  ### Footnotes
     |  ^^^^^^^^^^^^^
  362|  
     |  
  363|  Footnote 1 link[^first].
     |  ^^^^^^^^^^^^^^^^^^^^^^^^
  364|  
     |  
  365|  Footnote 2 link[^second].
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^
  366|  
     |  
  367|  Inline footnote^[Text of inline footnote] definition.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  368|  
     |  
  369|  Duplicated footnote reference[^second].
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  370|  
     |  
  371|  [^first]: Footnote **can have markup**
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  372|  
     |  
  373|      and multiple paragraphs.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  374|  
     |  
  375|  [^second]: Footnote text.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^
  376|  
     |  
  377|  
     |  
  378|  ### Definition lists
     |  ^^^^^^^^^^^^^^^^^^^^
  379|  
     |  
  380|  Term 1
     |  ^^^^^^
  381|  
     |  
  382|  :   Definition 1
     |  ^^^^^^^^^^^^^^^^
  383|  with lazy continuation.
     |  ^^^^^^^^^^^^^^^^^^^^^^^
  384|  
     |  
  385|  Term 2 with *inline markup*
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  386|  
     |  
  387|  :   Definition 2
     |  ^^^^^^^^^^^^^^^^
  388|  
     |  
  389|          { some code, part of Definition 2 }
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  390|  
     |  
  391|      Third paragraph of definition 2.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  392|  
     |  
  393|  _Compact style:_
     |  ^^^^^^^^^^^^^^^^
  394|  
     |  
  395|  Term 1
     |  ^^^^^^
  396|    ~ Definition 1
     |  ^^^^^^^^^^^^^^^^
  397|  
     |  
  398|  Term 2
     |  ^^^^^^
  399|    ~ Definition 2a
     |  ^^^^^^^^^^^^^^^^^
  400|    ~ Definition 2b
     |  ^^^^^^^^^^^^^^^^^
  401|  
     |  
  402|  
     |  
  403|  ### Abbreviations
     |  ^^^^^^^^^^^^^^^^^
  404|  
     |  
  405|  This is HTML abbreviation example.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  406|  
     |  
  407|  It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  408|  
     |  
  409|  *[HTML]: Hyper Text Markup Language
     |  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  410|          </vue-markdown>
rgex commented 4 years ago

Same problem here, did you found a solution?