webgen logo

webgen / static website generator

static website generation made easy!

Latest news

2007-12-31: Minor release with feature enhancements. More...

2007-09-08: Small bug fix release. More...

2007-06-29: Some bug fixes and one small feature enhancement. More...

Links

Generated by webgen

General Information

Plugin name:Tag/HtmlMetaInfo (Tag/Default)
Author:Andrea Censi
Summary:Writes the content of the "description","author","keywords" as HTML META tags.
Handled tags:htmlmetainfo

Description

This tag should only be used in the HTML <head> section of your default.template. It inserts the description, author and keywords meta tags, filled with the information from the node’s metainfo.

Examples

For the following page file:

---
title: Title for the page
description: Description for this page.
keywords: example, plugin, input
---
Content

the tag will output:

<meta name='description' content='Description for this page.'/>
<meta name='keywords' content='example, plugin, input'/>