All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openfuxml.addon.wiki.WikiTemplates Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package org.openfuxml.addon.wiki;

public class WikiTemplates
{
	private static boolean inited;
	
	public static String xmlDoctype, htmlDoctype;
	
	public static String htmlHeader,htmlHeaderTitle,htmlFooter;
	
	public WikiTemplates()
	{
		
	}
	
	public static void init()
	{
		if(!inited)
		{
			inited = true;
			xmlDoctype = "";
			xmlDoctype = "";
			
			htmlDoctype = "";
			htmlDoctype = "";
			
			htmlHeaderTitle = "\n"
				+ htmlDoctype
				+ "\n"
				+ "\n"
				+ "    "
				+ "{0}";
			
			htmlHeader = "\n"
					+ htmlDoctype
					+ "\n"
					+ "\n"
					+ "    ";
			
			
			htmlFooter="\n";
		}
	}
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy