https://github.com/2nthony/vuedown-loader
webpack loader to convert markdown to Vue-component
https://github.com/2nthony/vuedown-loader
loader markdown marked vuedown webpack
Last synced: 5 months ago
JSON representation
webpack loader to convert markdown to Vue-component
- Host: GitHub
- URL: https://github.com/2nthony/vuedown-loader
- Owner: 2nthony
- License: mit
- Created: 2019-07-01T14:40:32.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:59:05.000Z (over 2 years ago)
- Last Synced: 2025-12-15T04:04:12.547Z (7 months ago)
- Topics: loader, markdown, marked, vuedown, webpack
- Language: JavaScript
- Homepage:
- Size: 199 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# vuedown-loader
> Webpack loader for [vuedown](https://github.com/evillt/vuedown)
Please consider starring the project to show your ❤️ and support.
[](https://npmjs.com/package/@evillt/vuedown-loader)
[](https://npmjs.com/package/@evillt/vuedown-loader)
[](https://circleci.com/gh/evillt/vuedown-loader/tree/master)
[](./LICENSE)
[](https://donate.evila.me)
## Install
```console
yarn add vuedown @evillt/vuedown-loader --dev
```
## Usage
```js
module.exports = {
module: {
rules: [
{
test: /\.md$/,
use: [
{
loader: 'vue-loader'
},
{
loader: '@evillt/vuedown-loader'
}
]
}
]
}
}
```
## Contributing
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D
## Author
**vuedown-loader** © [evillt](https://github.com/evillt), Released under the [MIT](./LICENSE) License.
Authored and maintained by **EVILLT** with help from contributors ([list](https://github.com/evillt/vuedown-loader/contributors)).
> [evila.me](https://evila.me) · GitHub [@evillt](https://github.com/evillt) · Twitter [@evillt](https://twitter.com/evillt)