1. saber-markdown
A custom build of markdown-it for Saber.
saber-markdown
Package: saber-markdown
Last modified: Mon, 16 May 2022 09:56:30 GMT
Version: 0.1.6
License: MIT
Downloads: 3,044

Install

npm install saber-markdown
yarn add saber-markdown

saber-markdown

A custom build of markdown-it for Saber.

Differences

Implemented via a babel plugin.

Support @ in attribute names

In:

 <button @click="foo"></button>

Out:

 - <p>&lt;button @click=&quot;foo&quot;&gt;</button></p>\n
+ <p><button @click="foo"></button></p>\n

Support top-level components

In:

 <FooBar />

Out:

 - <p><FooBar /> hi</p>\n
+ <FooBar /> hi

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin