You're likely familiar with static site generators like Jekyll and Wintersmith. This tutorial demonstrates building a custom Grunt plugin to generate a static site from templates and Markdown files, offering greater control and integration with your existing workflow.
Key Advantages of Using Grunt:
This approach provides several benefits:
Setup:
Assuming you have Git, Node.js, and grunt-cli installed, follow these steps:
grunt-init
: npm install -g grunt-init
git clone git://github.com/gruntjs/grunt-init-gruntplugin.git ~/.grunt-init/gruntplugin
grunt-mini-static-blog
).grunt-init gruntplugin
(Answer the prompts; defaults are acceptable).npm install
npm install handlebars highlight.js meta-marked moment rss lodash --save-dev
Generating Blog Posts:
The core functionality involves generating individual blog posts. Modify Gruntfile.js
to include the following configuration for mini_static_blog
:
mini_static_blog: { default: { options: { data: { author: "Your Name", url: "http://yourwebsite.com", disqus: "", // Disqus username (optional) title: 'My Blog', description: 'My Blog Description' }, template: { post: 'templates/post.hbs', page: 'templates/page.hbs', index: 'templates/index.hbs', header: 'templates/partials/header.hbs', footer: 'templates/partials/footer.hbs', notfound: 'templates/404.hbs' }, src: { posts: 'content/posts/', pages: 'content/pages/' }, www: { dest: 'build' } } } }
Create the necessary template files (templates/post.hbs
, templates/page.hbs
, templates/index.hbs
, templates/partials/header.hbs
, templates/partials/footer.hbs
, templates/404.hbs
). These templates utilize Handlebars.
Plugin Code (mini_static_blog.js):
The core logic resides within tasks/mini_static_blog.js
. The code handles Markdown parsing, template rendering, and file writing. This section includes Markdown processing with syntax highlighting, template compilation, post generation, page generation, RSS feed creation, and 404 page creation. The code also manages pagination for the index pages. (The complete, detailed code is too extensive to include here, but the structure and key elements are described above.)
Further Development:
This plugin forms a foundation for a more comprehensive static site generator. Consider these enhancements:
This tutorial provides a solid starting point for creating a customized static site generator using Grunt. Remember to consult the complete code (available at [link to source code - replace with actual link if available]) for detailed implementation.
The above is the detailed content of Building a Static Site Generator Grunt Plugin. For more information, please follow other related articles on the PHP Chinese website!