Change Note Container Presentation
Last changed: -76.30.20.161

.
Owner
RequiredBuild
RelatedBugs
RelatedFeatureRequests
Summary

Details

ContainerStart

 ContainerStart(String type)
 ContainerStart(String type, String id)
 ContainerStart(String type, String id, String style)

ContainerEnd

 ContainerEnd(String type)

Example

 <div id="my_div" class="my_class">
   <span>Hello World</span>
 </div>

To produce the output above would require the following:

 @@Presentations.ContainerStart("div", "my_div", "my_class")@@
 @@Presentations.ContainerStart("span")@@Hello World@@Presentations.ContainerEnd("span")@@
 @@Presentations.ContainerEnd("div")@@
Hello World

If the wiki could accept XHTML then this huge work-around would become unnecessary.