- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: http://www.metalsmith.io/
- 软件文档: https://github.com/segmentio/metalsmith
- 官方下载: https://github.com/segmentio/metalsmith
软件介绍
Metalsmith:一个非常简单,可插拔的静态网站生成器。在 Metalsmith 中,所有的逻辑都是由插件来处理的。 你只需将它们链接在一起。
工作原理
读取源目录中的所有文件。
调用一系列操纵文件的插件。
将结果写入目标目录!
每个插件都会调用源目录的内容,并且每个文件都可以包含将作为元数据附加的 YAML 前端内容,例如:
--- title: A Catchy Title date: 2014-12-01 --- An informative article.
...将被解析为:
{
'path/to/my-file.md': {
title: 'A Catchy Title',
date: new Date('2014-12-01'),
contents: new Buffer('An informative article.')
}
}...然后所有插件可以按照预想操纵。 编写插件非常简单,只需看一下示例草稿插件即可。
Data Structures and Algorithm Analysis in Java
Mark A. Weiss / Pearson / 2006-3-3 / USD 143.00
As the speed and power of computers increases, so does the need for effective programming and algorithm analysis. By approaching these skills in tandem, Mark Allen Weiss teaches readers to develop wel......一起来看看 《Data Structures and Algorithm Analysis in Java》 这本书的介绍吧!
