1.0.0-alpha.8 • Published 7 years ago

san-markdown-loader v1.0.0-alpha.8

Weekly downloads
9
License
ISC
Repository
github
Last release
7 years ago

san-markdown-loader

import markdown files as a san component

NOTICE

We extract san code block out of .md files and cache theme in files at a .cache directory. So this may trigger webpack's recompile if watch is on. To avoid this, add the WatchIgnorePlugin in your webpack config file:

{
    // ...
    plugins: [
        // ...
        new webpack.WatchIgnorePlugin([
            /\.cache/
        ])
    ]
}