CCNet.Build.Confluence.PageDocument.BuildSection C# (CSharp) Method

BuildSection() public static method

Builds "Section" macro block.
public static BuildSection ( System.Xml.Linq.XElement body ) : System.Xml.Linq.XElement
body System.Xml.Linq.XElement
return System.Xml.Linq.XElement
		public static XElement BuildSection(XElement body)
		{
			CheckBody(body);

			return Element(
				"ac:structured-macro",
				Attribute("ac:name", "section"),
				body);
		}