1.0.1 • Published 4 years ago

amish-yaml-loader v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

yaml-loader

Install

npm install amish-yaml-loader --save-dev or
yarn add amish-yaml-loader -D

Webpack config

// loaders
 module: {
        rules: [
            {
                test: /\.ya?ml$/,
                use: ['json-loader', 'amish-yaml-loader'],
            },
        ],
    },

Yaml

---
copy: this is some copy

Usage import data from '../path/to/data.yaml';

use with markdown

install json markdown loader npm install json-markdown-loader --save-dev or yarn add json-markdown-loader -D

Webpack config

module: {
        rules: [
            {
                test: /\.ya?ml$/,
                use: ['json-loader', 'json-markdown-loader', 'amish-yaml-loader'],
            },
        ],
    }

Yaml

---
content:
  type: markdown
  value: >
    ## Heading
    some content
     - list item
     - list item 2

import markdownContent from '../path/to/content.yaml';