0.0.2 • Published 4 years ago

markdown-sitemap-generator-webpack-plugin v0.0.2

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

Markdown Site Map Generator Plugin

Generate Site Map from markdown

Installation

Node.js

npm install markdown-rss-generator-webpack-plugin

Usage Example (ES6)

In your Webpack Config file

const MarkdownSiteMapGeneratorPlugin = require("markdown-sitemap-generator-webpack-plugin").default;

//define the options
const option = {
      host: Config.url,
      links: [], //links that you also want to include in the site map
      route: "/items",
      outputPath:"sitemap.txt"
    }

//In the plugin section

 plugins: [
  new MarkdownSiteMapGeneratorPlugin(option)
 ]