Static Site Generator System

如果嫌WordPress慢了何不把网页全部变成静态的html页面发布?Jekyll和nanoc是满足这种需求的两款Ruby程序,有了它你可以像在服务器上一样写博客,写完以后生成html文件在发布到服务器,还可以配合版本服务器使用,十分惬意。以下是他们的简介:

Jekyll
Jekyll is a simple, blog aware, static site generator. It takes a template directory (representing the raw form of a website), runs it through Textile or Markdown and Liquid converters, and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub.

nanoc
nanoc is a tool that runs on your local computer and compiles documents written in formats such as Markdown, Textile, Haml… into a static web site consisting of simple HTML files, ready for uploading to any web server.

-EOF-