vue3-markdown-it
Advanced tools
Comparing version
@@ -7,2 +7,6 @@ # Changelog | ||
## [1.0.9] - 2021-06-05 | ||
### Changed | ||
- Update dependencies | ||
- Fix README (Thanks [manonthemat](https://github.com/manonthemat) for [#186](https://github.com/JanGuillermo/vue3-markdown-it/pull/186)!) | ||
## [1.0.8] - 2021-04-02 | ||
@@ -77,2 +81,3 @@ ### Changed | ||
[1.0.9]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.8...v1.0.9 | ||
[1.0.8]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.7...v1.0.8 | ||
@@ -79,0 +84,0 @@ [1.0.7]: https://github.com/JanGuillermo/vue3-markdown-it/compare/v1.0.6...v1.0.7 |
{ | ||
"name": "vue3-markdown-it", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"author": "Jan Guillermo", | ||
@@ -22,3 +22,3 @@ "description": "An awesome Vue 3 markdown-it wrapper plugin that can even support external plugins!", | ||
"dependencies": { | ||
"markdown-it": "^12.0.3", | ||
"markdown-it": "^12.0.6", | ||
"markdown-it-abbr": "^1.0.4", | ||
@@ -25,0 +25,0 @@ "markdown-it-anchor": "^7.1.0", |
@@ -39,7 +39,7 @@ <p align="center"> | ||
import { createApp } from 'vue'; | ||
import VueMarkdownIt from 'vue3-markdown-it'; | ||
import Markdown from 'vue3-markdown-it'; | ||
const app = createApp(); | ||
app.use(VueMarkdownIt); | ||
app.use(Markdown); | ||
``` | ||
@@ -57,3 +57,3 @@ | ||
<div> | ||
<vue3-markdown-it :source='source' /> | ||
<Markdown :source="source" /> | ||
</div> | ||
@@ -63,7 +63,7 @@ </template> | ||
<script> | ||
import VueMarkdownIt from 'vue3-markdown-it'; | ||
import Markdown from 'vue3-markdown-it'; | ||
export default { | ||
components: { | ||
VueMarkdownIt | ||
Markdown | ||
}, | ||
@@ -125,3 +125,3 @@ data() { | ||
> <div> | ||
> <vue3-markdown-it :source='source' :plugins='plugins' /> | ||
> <Markdown :source="source" :plugins="plugins" /> | ||
> </div> | ||
@@ -132,7 +132,7 @@ > </template> | ||
> import MarkdownItStrikethroughAlt from 'markdown-it-strikethrough-alt'; | ||
> import VueMarkdownIt from 'vue3-markdown-it'; | ||
> import Markdown from 'vue3-markdown-it'; | ||
> | ||
> export default { | ||
> components: { | ||
> VueMarkdownIt | ||
> Markdown | ||
> }, | ||
@@ -139,0 +139,0 @@ > data() { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
1
-50%0
-100%1
-50%3402827
-17.3%6
-14.29%4024
-84.14%Updated