Skip to content
Victor Luchits edited this page Jan 8, 2018 · 2 revisions

Rocket has no prior understanding of XML elements other than the built-in element types.

When parsing a tag Rocket will look up custom elements associated with the tag name and fall back to a generic element. Very few custom elements are required as most of the power in Rocket comes from styling elements with RCSS to produce the desired layout.

The user is encouraged to follow standard HTML guidelines where possible to improve readability across the community.

Global Attributes

Elements have a base set of attributes that are common to across all types.

Attributes

id = id (CS)

The unique identifier for the element in this document.

class = cdata (CI)

Assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names. Multiple class names must be separated by white space characters. See RCSS

style = cdata (CS)

Specifies inline style information for the element. See RCSS

on events* = cdata (CS)

Event bindings. See Events