## 基本用法

最基本用法:

```js
assemble: {
  blog: {
    options: {
      plugins: ['{%= name %}'],
    },
    files: {
      './blog/': ['./templates/blog/*.hbs']
    }
  }
}

```

## 结果

```js
./blog/sitemap.xml
./blog/robots.txt
```

## 高级

```js
assemble: {
  blog: {
    options: {
      plugins: ['{%= name %}'],
      sitemap: {
        homepage: 'http://www.gdcome.com',
            changefreq: 'daily',
            priority: '0.8',
            exclude: ['50x', 'foo'],
            robot: false,
            urldelete: 'test/'
      }
    },
    files: {
      './blog/': ['./templates/blog/*.hbs']
    }
  }
}
```

## 结果

```js
./blog/sitemap.xml
```
