Use a different extension for template files has been edited by Matt Welch (Feb 28, 2007).

(View changes)

Content:

To accomplish this you need to override the Webpage.getMarkupType() method in your page class.

For instance, the default:

public String getMarkupType()
{
	return "html";
}

can be overridden to be something like:

public String getMarkupType()
{
	return "xhtml";
}

Reply via email to