You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

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";
}
  • No labels