{"_id":"vue-markdown","_rev":"27-924e850d80ea46ac70d6bc7df74c9cc8","name":"vue-markdown","time":{"modified":"2022-06-28T19:51:07.933Z","created":"2015-12-01T00:23:11.056Z","0.1.1":"2015-12-01T00:23:11.056Z","1.0.1":"2016-05-09T18:12:25.690Z","1.1.0":"2016-05-12T15:54:35.717Z","1.2.0":"2016-05-17T14:30:59.137Z","2.0.1":"2016-11-22T02:17:32.882Z","2.1.1":"2016-11-24T09:14:24.742Z","2.1.2":"2016-11-25T01:44:25.834Z","2.1.3":"2017-01-03T07:28:49.433Z","2.1.4":"2017-07-23T09:17:49.824Z","2.2.1":"2017-07-26T14:26:52.770Z","2.2.2":"2017-07-31T03:01:56.568Z","2.2.3":"2017-07-31T12:01:30.341Z","2.2.4":"2017-07-31T12:32:13.479Z"},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"dist-tags":{"latest":"2.2.4"},"description":"A Powerful and Highspeed Markdown Parser for Vue","readme":"# vue-markdown\n\n[![npm](https://img.shields.io/npm/v/vue-markdown.svg?style=flat)](https://www.npmjs.com/package/vue-markdown)\n[![npm](https://img.shields.io/npm/l/vue-markdown.svg?style=flat)](https://www.npmjs.com/package/vue-markdown)\n[![npm](https://img.shields.io/npm/dt/vue-markdown.svg?style=flat)](https://www.npmjs.com/package/vue-markdown)\n\n> If you want vue-markdown for `vue1.X.X`, please checkout [vue-markdown1.X.X](https://github.com/miaolz123/vue-markdown/tree/v1).\n\nA Powerful and Highspeed Markdown Parser for Vue.\n\nQuick start: `<vue-markdown>i am a ~~tast~~ **test**.</vue-markdown>`\n\nSupported Markdown Syntax:\n\n* [x] automatic table of contents\n* [x] table & class customize\n* [x] *SyntaxHighlighter\n* [x] definition list\n* [x] strikethrough\n* [x] GFM task list\n* [x] abbreviation\n* [x] superscript\n* [x] subscript\n* [x] footnote\n* [x] insert\n* [x] *katex\n* [x] emoji\n* [x] mark\n\n`*SyntaxHighlighter` work with [Prism](http://prismjs.com) recommend\n\n`*katex` need add [katex css](https://unpkg.com/katex/dist/katex.min.css).\n\n# Example\n\n[simple](https://github.com/miaolz123/vue-markdown/blob/master/example/simple)\n\n[webpack-simple](https://github.com/miaolz123/vue-markdown/blob/master/example/webpack-simple)\n\n[Live Demo](http://miaolz123.github.io/vue-markdown/)\n\n# Installation\n\n### Browser globals\n\n> The **dist** folder contains `vue-markdown.js` with the component exported in the `window.VueMarkdown` object.\n\n```html\n<body>\n  <vue-markdown>i am a ~~tast~~ **test**.</vue-markdown>\n</body>\n<script src=\"path/to/vue.js\"></script>\n<script src=\"path/to/vue-markdown.js\"></script>\n<script>\n    Vue.use(VueMarkdown);\n    var vm = new Vue({\n        el: \"body\"\n    });\n</script>\n```\n\n### NPM\n\n```shell\n$ npm install --save vue-markdown\n```\n\n### Yarn\n\n```shell\n$ yarn add vue-markdown --save\n```\n\n## CommonJS\n\n```js\nvar VueMarkdown = require('vue-markdown');\n\nnew Vue({\n  components: {\n    'vue-markdown': VueMarkdown\n  }\n})\n```\n\n## ES6 (Vue-CLI users)\n\nAfter installing via Yarn or NPM, use the following snippet in the script portion of the Vue component which you wish to render the Markdown.\n\n```js\nimport VueMarkdown from 'vue-markdown'\n\nnew Vue({\n  components: {\n    VueMarkdown\n  }\n})\n```\n\n# Slots\n\n```html\n<vue-markdown>this is the default slot</vue-markdown>\n```\n\nAfter setting up the middleware in your vue component above, using the embedded markdown is as easy as writing it between the `vue-markdown` tags.\n\nVueMarkdown has a default slot which is used to write the `markdown` source.\n\nTIP: The default slot only renders **once** at the beginning, and it will overwrite the prop of `source`!\n\n# Props\n\n| Prop | Type | Default | Describe |\n| ---- | ---- | ------- | ------- |\n| watches | Array | `[\"source\", \"show\", \"toc\"]` | HTML refresh automatically when the prop in this array changed |\n| source | String | `null` | the markdown source code |\n| show | Boolean | `true` | enable render to the default slot automatically |\n| html | Boolean | `true` | enable HTML syntax in source |\n| xhtml-out | Boolean | `true` | `<br></br>` => `<br />` |\n| breaks | Boolean | `true` | `\\n` => `<br>` |\n| linkify | Boolean | `true` | autoconvert URL-like text to link |\n| emoji | Boolean | `true` | `:)` => `😃` |\n| typographer | Boolean | `true` | enable some language-neutral replacement and quotes beautification |\n| lang-prefix | String | `language-` | CSS language prefix for fenced blocks |\n| quotes | String | `“”‘’` | use `“”‘’` for Chinese, `„“‚‘` for German, `«»„“` for Russian |\n| table-class | String | `table` | customize html class of the `<table>` |\n| task-lists | Boolean | `true` | enable GFM task list |\n| toc | Boolean | `false` | enable automatic table of contents |\n| toc-id | String | `undefined` | the HTML id to render TOC |\n| toc-class | String | `table` | customize html class of the `<ul>` wrapping the TOC |\n| toc-first-level | Number | `2` | use `2` if you want to skip `<h1>` from the TOC |\n| toc-last-level | Number | `'toc-first-level' + 1` | use `5` if you want to skip `<h6>` from the TOC |\n| toc-anchor-link | Boolean | `true` | enable the automatic anchor link in the headings |\n| toc-anchor-class | String | `toc-anchor` | customize the anchor class name |\n| toc-anchor-link-symbol | String | `#` | customize the anchor link symbol |\n| toc-anchor-link-space | Boolean | `true` | enable inserting a space between the anchor link and heading |\n| toc-anchor-link-class | String | `toc-anchor-link` | customize the anchor link symbol class name |\n| anchorAttributes | Object | `{}` | anchor tag attributes such as `target: '_blank'` or `rel: 'nofollow'` |\n| prerender | Function (String) String | `null` | filter function before markdown parse |\n| postrender | Function (String) String | `null` | filter function after markdown parse |\n\n# Events\n\n| Name | Param[Type] | Describe |\n| ---- | --------- | -------- |\n| rendered | outHtml[String] | dispatch when render finish |\n| toc-rendered | tocHtml[String] | dispatch when TOC render finish, never dispatch if the toc[prop] is `false` |\n\n# Thanks\n\n- [markdown-it](https://github.com/markdown-it/markdown-it)\n- [transtone](https://github.com/transtone)\n- [**brandonferens**](https://github.com/brandonferens)\n\n# Contributions\n\n- [miaolz123](https://github.com/miaolz123)\n- [brandonferens](https://github.com/brandonferens)\n- [brianbancroft](https://github.com/brianbancroft)\n- [nikolasp](https://github.com/nikolasp)\n- [mbackonja](https://github.com/mbackonja)\n- [Endi1](https://github.com/Endi1)\n- [printscreen](https://github.com/printscreen)\n- [killix](https://github.com/killix)\n- [LeFnord](https://github.com/lefnord)\n\n# License\n\nCopyright (c) 2016 [miaolz123](https://github.com/miaolz123) by [MIT](https://opensource.org/licenses/MIT)\n","versions":{"1.0.1":{"name":"vue-markdown","version":"1.0.1","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.default.js","build":"webpack --config webpack.config.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","json-loader":"^0.5.4","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1","prismjs":"^1.4.1"},"gitHead":"a7e5b837c943e901628fa4231a790e1e9dad6242","_id":"vue-markdown@1.0.1","_shasum":"5f1c57784d16dd21fc994f3d95b12761d2b98a72","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"5f1c57784d16dd21fc994f3d95b12761d2b98a72","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-1.0.1.tgz","integrity":"sha512-Macf3jfw4f55nN2sTAQhkjA3JQQzBf10Qe2Nn1woB3ZEB4X91sqkMdjZyscTvahOkK8ajsvsugjtK6jS7/QB+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCxka7HSmBq59E2Tei2+tflVP2ytYmWPvXXP5gVVPPT6QIgXvqYHo+ZhrRKzePlaQXJM2k51Uu9mEgf9oDI3zv0CHY="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-markdown-1.0.1.tgz_1462817542712_0.8659752744715661"}},"1.1.0":{"name":"vue-markdown","version":"1.1.0","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","min":"uglifyjs ./dist/vue-markdown.js -m -c --noerr -o ./dist/vue-markdown.min.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"0ee7d4712a6e302c340f1ee52ef17593fe872d55","_id":"vue-markdown@1.1.0","_shasum":"ec817b4b754f0b915a5b54ec97c3f4cbc3e1f5ee","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"ec817b4b754f0b915a5b54ec97c3f4cbc3e1f5ee","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-1.1.0.tgz","integrity":"sha512-nix6vrRQqyTKj9xrJ3PeukFxE/bf/iuVwlGc0CP48f7T8dnLD9QidWcVz2UzCr35AtOqoDpNtBYKw3wzSEx7SA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDn+/EEzcL65yd36f7lTb2wUpV1+oKKE8FaDUo0AVEoKwIhALbdjuT8bQFEBpp7kfDvINqbsyiN86RhX/IvBLLDUkCv"}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-markdown-1.1.0.tgz_1463068475126_0.1246498606633395"}},"1.2.0":{"name":"vue-markdown","version":"1.2.0","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","min":"uglifyjs ./dist/vue-markdown.js -m -c --noerr -o ./dist/vue-markdown.min.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"db62deb5155fe150728f6e68cd866f9a7152b228","_id":"vue-markdown@1.2.0","_shasum":"38cd5da8fb2ba7e76a43e1c9ca32e41f4a1e5967","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"38cd5da8fb2ba7e76a43e1c9ca32e41f4a1e5967","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-1.2.0.tgz","integrity":"sha512-XA8+awFVMmbwyqxKjLKUS6O3gOs1RdghYtzc9zPMeSQ8/K9OBmroEssuZyoq8MKSYdnXyiDzZhv53+SQE6qXgw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5rK8l6av7juXbwTKFGSOthMfukUbej1LywYBXSf7ErQIgGKP8qZ2NmzoGXiULANpioxeEl93+sdP3eXTvyAGQYjY="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/vue-markdown-1.2.0.tgz_1463495454937_0.6729075955227017"}},"2.0.1":{"name":"vue-markdown","version":"2.0.1","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","min":"uglifyjs ./dist/vue-markdown.js -m -c --noerr -o ./dist/vue-markdown.min.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"146fd34bf82c59898d7caa21b88cd4dd10e16616","_id":"vue-markdown@2.0.1","_shasum":"ba19b18e0afaafcb6e571a93e3395d52f9521687","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.7.0","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"ba19b18e0afaafcb6e571a93e3395d52f9521687","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.0.1.tgz","integrity":"sha512-gLv2wfTFWK0X+uGp6OCqVOF2VJWLfu/dRZCFolswuObSJae6lg72gUG2Ezh3bxEiohpK6nNIaD4s3pPLl7Wdeg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCV8dw2s7EqvwedgSHhbt4JEEArrIAzcRFR8FtCpl8oaQIhAOQWevAQOHuQ9nr38RBuD27pfk0MdMEhXQdE1vD8jx30"}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-markdown-2.0.1.tgz_1479781050373_0.8149597360752523"}},"2.1.1":{"name":"vue-markdown","version":"2.1.1","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","min":"uglifyjs ./dist/vue-markdown.js -m -c --noerr -o ./dist/vue-markdown.min.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"2acb6d9a0e332fa74211f76769719317436c1203","_id":"vue-markdown@2.1.1","_shasum":"10bdc6f85a63c4bae8f93072b690fc0987598788","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.7.0","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"10bdc6f85a63c4bae8f93072b690fc0987598788","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.1.1.tgz","integrity":"sha512-mB01DYvCILaTAU/WUjCjWqEJtCAfqJkrDYorUPY6SEtfzed+g1cMCM5ArXv+V0WTwSMu4gd2XOWkNX0y2bDQsw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDYVvFIpmwJL445QPtrrDLrJhe4IGEtgtUK27TEPW+/AAiEApBCP7/moIbXO/SmCicTPM9x2/cbPY4wjAP6BbIDpIXQ="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-markdown-2.1.1.tgz_1479978862282_0.1697899631690234"}},"2.1.2":{"name":"vue-markdown","version":"2.1.2","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.min.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","min":"uglifyjs ./dist/vue-markdown.js -m -c --noerr -o ./dist/vue-markdown.min.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^8.3.1","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"d865505c575faa2fa1af7f36c7fafc6c6f73cb79","_id":"vue-markdown@2.1.2","_shasum":"dabaf4c7bb7ce92a369b99a80e2fcf329fa36375","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.7.0","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"dabaf4c7bb7ce92a369b99a80e2fcf329fa36375","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.1.2.tgz","integrity":"sha512-PyUXQQl+wI2d/TYs2DC3lSNG2B8IJTTDmaV/cKoi279UpR2Dg6ddAai6elqXLa0vA/OILwE3/JCnRaBSYN3Niw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAKLIA719LH+lQAszhp6zkTyAccJvpV4bDoFAzIgMDYiAiEAprfpUnvxpJi8TokSD65376GlfeiZn0pqis0mho0RynU="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/vue-markdown-2.1.2.tgz_1480038265586_0.28297807928174734"}},"2.1.3":{"name":"vue-markdown","version":"2.1.3","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","style-loader":"^0.13.1","vue-loader":"^10.0.2","webpack":"^1.13.0"},"dependencies":{"markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1","markdown-it-katex":"^2.0.3"},"gitHead":"93f741a6588fb8f1152415c2dfda50b92334b413","_id":"vue-markdown@2.1.3","_shasum":"9e02b295e7f044feaab82fe0e4706bece98c6cb3","_from":".","_npmVersion":"3.10.5","_nodeVersion":"6.7.0","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"shasum":"9e02b295e7f044feaab82fe0e4706bece98c6cb3","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.1.3.tgz","integrity":"sha512-Vox12a4WY58Hfbvb8OHB2l6lkcl9lOpYPqN0dpEjYApDjMX8N9j7IzWmHcolX+OfT6240mvPoyccZb38UeTHKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6SFvy+a8Gnp/pLF1iYnKppWp2fHIAcgEzSEaR5syx0AIhAPQSluH0t+BHrRTxvl4tR1pZxCtWqCgEF/ifaAf4bhRL"}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/vue-markdown-2.1.3.tgz_1483428526998_0.8973340899683535"}},"2.1.4":{"name":"vue-markdown","version":"2.1.4","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","markdown-it-highlightjs":"^3.0.0","style-loader":"^0.13.1","vue-loader":"^10.0.2","webpack":"^1.13.0"},"dependencies":{"highlight.js":"^9.12.0","markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-highlightjs":"^3.0.0","markdown-it-ins":"^2.0.0","markdown-it-katex":"^2.0.3","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"4625e9b2a630d8e50d5ab78e91a46326a2e72c90","_id":"vue-markdown@2.1.4","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"integrity":"sha512-EEAnz0SM+ud0alBFD3LJC0uxJqhls3pBWoQ11dHJTIcrOZSU+QRdNKHIqig2xw5xV6LOAeiI8crt4VL0ClwQLQ==","shasum":"27de9fb0ce91c4858a225c18a8dc2201d7478c0f","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.1.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8ZwaG6/MskfVif72++T5sV+/dQoGoRVZyNFl8g1P9uAIgNQ44H3AZp5KmeQH8DYHoy3GK/ZZZwrvkp8gUsklRj5k="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-markdown-2.1.4.tgz_1500801469655_0.4061938049271703"}},"2.2.1":{"name":"vue-markdown","version":"2.2.1","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","markdown-it-highlightjs":"^3.0.0","style-loader":"^0.13.1","vue-loader":"^10.0.2","webpack":"^1.13.0"},"dependencies":{"highlight.js":"^9.12.0","markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-highlightjs":"^3.0.0","markdown-it-ins":"^2.0.0","markdown-it-katex":"^2.0.3","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"d5372a0d2b9166cd5a6493edcb43fab69fcd6b9a","_id":"vue-markdown@2.2.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"integrity":"sha512-ffeUMc5AZL1UvMTvNYaU9DNqi7576sJ87Q7h6qVg44Q/exQBrst6fCwfknwb/phLKCc6iL4Cgm36VFo3v9XPog==","shasum":"81b216d589af95a39af693dc20e737d4e239043c","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGjPfoxgi09wz2lwX1y8d2s+99D1TtdmP/9ACz++RyoGAiA4LraFosNAMfyBqShwWyvUQtCvD7X5N7lR5wJMsB4t3g=="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-markdown-2.2.1.tgz_1501079212501_0.9155040779151022"}},"2.2.2":{"name":"vue-markdown","version":"2.2.2","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.4","markdown-it-highlightjs":"^3.0.0","style-loader":"^0.13.1","vue-loader":"^10.0.2","webpack":"^1.13.0"},"dependencies":{"highlight.js":"^9.12.0","markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-highlightjs":"^3.0.0","markdown-it-ins":"^2.0.0","markdown-it-katex":"^2.0.3","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-toc-and-anchor":"^4.1.1"},"gitHead":"45aad84e152f1a93a0678f1bddc7ec4172826c93","_id":"vue-markdown@2.2.2","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"integrity":"sha512-ZrqIpLwGe645eiLKPSdbQ753MB/6Kw9z/lZ0gZjklPHYKEcjN82JdZRVZuGApd6yU20g582WxGUXTHnrbJhBTg==","shasum":"5c96c65111da202ecaf86af6b58097cc2deeb6e7","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.2.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEjHdcUsHf1R1vqUEktEgyqo5zH8MdF8OQiL5LddSNmYAiAVZYsoDPjg1ZW3T/IQPsM0VTKT4sRZnvZ8c+tCKWNtnw=="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-markdown-2.2.2.tgz_1501470116403_0.26998320245184004"}},"2.2.3":{"name":"vue-markdown","version":"2.2.3","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.7","style-loader":"^0.13.1","webpack":"^1.13.0"},"dependencies":{"highlight.js":"^9.12.0","markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-highlightjs":"^3.0.0","markdown-it-ins":"^2.0.0","markdown-it-katex":"^2.0.3","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-task-lists":"^2.0.1","markdown-it-toc-and-anchor":"^4.1.2"},"gitHead":"d3af0b434f180cc0a0ebec96fbde8b4883e9ccde","_id":"vue-markdown@2.2.3","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"integrity":"sha512-vD6pjtstF+CFLS0gKgfb3UA3Y1ra8Ao8zYh4sjRGGtzW9aD/ntMywqjSxLY5qPHDP3jVyc1gRCAVjg2ruLODEQ==","shasum":"f6e7e228baecf3d00d3a6a2b3146f694c68c1702","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvJlDQfehcAAue1YWpLDZgao2rH8DjTx7CL/Nw3YkSCAIhALxH22XIMiiIx4WNv+RjMDJRZHvl0VoWwjhjXzhLm1Js"}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-markdown-2.2.3.tgz_1501502490079_0.7410237372387201"}},"2.2.4":{"name":"vue-markdown","version":"2.2.4","description":"A Powerful and Highspeed Markdown Parser for Vue","main":"dist/vue-markdown.common.js","files":["dist/vue-markdown.js","dist/vue-markdown.common.js","src"],"scripts":{"start":"webpack --config webpack.config.js","build":"webpack --config webpack.common.js","test":"echo true"},"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"keywords":["vue","markdown","vue-markdown"],"author":{"name":"miaolz123"},"license":"MIT","bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"homepage":"https://github.com/miaolz123/vue-markdown#readme","devDependencies":{"babel-core":"^6.8.0","babel-loader":"^6.2.4","babel-plugin-transform-es2015-parameters":"^6.8.0","babel-plugin-transform-runtime":"^6.8.0","babel-preset-es2015":"^6.6.0","babel-runtime":"^6.6.1","css-loader":"^0.23.1","json-loader":"^0.5.7","style-loader":"^0.13.1","webpack":"^1.13.0"},"dependencies":{"highlight.js":"^9.12.0","markdown-it":"^6.0.1","markdown-it-abbr":"^1.0.3","markdown-it-deflist":"^2.0.1","markdown-it-emoji":"^1.1.1","markdown-it-footnote":"^2.0.0","markdown-it-ins":"^2.0.0","markdown-it-katex":"^2.0.3","markdown-it-mark":"^2.0.0","markdown-it-sub":"^1.0.0","markdown-it-sup":"^1.0.0","markdown-it-task-lists":"^2.0.1","markdown-it-toc-and-anchor":"^4.1.2"},"gitHead":"d3af0b434f180cc0a0ebec96fbde8b4883e9ccde","_id":"vue-markdown@2.2.4","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"miaolz123","email":"miaolizhao@126.com"},"dist":{"integrity":"sha512-hoTX/W1UIdHZrp/b0vpHSsJXAEfWsafaQLgtE2VX4gY8O/C3L2Gabqu95gyG429rL4ML1SwGv+xsPABX7yfFIQ==","shasum":"db0f774178f3bc91ee18c626d86a3a0d2de22746","tarball":"https://registry.npmjs.org/vue-markdown/-/vue-markdown-2.2.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCaQFXfUYriv0Fa4IkY2n7KUw3RH1WUWXbLAtajE0tqwIgeGF5afo0jpVW+N4ktm6ut1hkbzw1b3IDKDbKT99KDFQ="}]},"maintainers":[{"name":"miaolz123","email":"miaolizhao@126.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/vue-markdown-2.2.4.tgz_1501504333334_0.05595999816432595"}}},"homepage":"https://github.com/miaolz123/vue-markdown#readme","keywords":["vue","markdown","vue-markdown"],"repository":{"type":"git","url":"git+https://github.com/miaolz123/vue-markdown.git"},"author":{"name":"miaolz123"},"bugs":{"url":"https://github.com/miaolz123/vue-markdown/issues"},"license":"MIT","readmeFilename":"README.md","users":{"422303771":true,"mhaidarh":true,"kikna":true,"kankungyip":true,"ghettovoice":true,"msonowal":true,"diegoazh":true,"liupengbo":true}}