ECMAScript for XML
ECMAScript for XML (E4X) comprises XML markup and XML data manipulation facilities.
Markup
XML markup is directly used in ActionScript 3 for rendering reactive UI components.
package me.diantha.portfolio {
public function Portfolio() {
return (
<>
<j:VGroup xmlns:j="jet.components.**" gap={5}>
<!-- some comment -->
<j:Label>
<markdown>
Hi **there**.
</markdown>
</j:Label>
</j:VGroup>
</>
);
}
}
XML namespaces are used for importing packages solely within the markup, either non-recursive (q.f.*
) or recursive (q.f.**
). It is additionally allowed to use lexical names and fully qualified names like <jet.components.HGroup>
as long as the component name is in scope.
Note: Unlike the E4X standard 2nd edition, markup does not result in
XML
orXMLList
objects, but ratherReactNode
; and there is support fora
attributes without an attribute value, which equalsa={true}
.
Markdown
Use <markdown>
tags for translating Markdown to HyperText Markup Language (HTML) text.
Note: Tags nested with
<markdown>
must comply with XHTML tags; for instance, use<br/>
instead of<br>
.
It is additionally allowed to interpolate HTML code inside a <markdown>
tag using braces:
<markdown>
Hi, {personName}
</markdown>
Note: Interpolated parts must be in the HTML language (not XHTML or Markdown).