pengzhanbo 157281aec8
feat(plugin-md-power): add qrcode syntax plugin for markdown (#777)
* feat(plugin-md-power): add  qrcode syntax plugin for markdown

* chore: tweak
2025-12-05 17:18:13 +08:00

14 lines
739 B
Plaintext

// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`qrcodePlugin > should not work with container syntax 1`] = `"<VPQRCode text="text" mode="img" />"`;
exports[`qrcodePlugin > should not work with container syntax 2`] = `"<VPQRCode text="text" svg mode="card" />"`;
exports[`qrcodePlugin > should not work with container syntax 3`] = `"<VPQRCode text="text" title="title" mode="img" />"`;
exports[`qrcodePlugin > should work with embed syntax 1`] = `"<VPQRCode text="text" mode="img" />"`;
exports[`qrcodePlugin > should work with embed syntax 2`] = `"<VPQRCode text="text" svg mode="card" />"`;
exports[`qrcodePlugin > should work with embed syntax 3`] = `"<VPQRCode text="text" title="title" mode="img" />"`;