, javascript. Facebook FBML, .
, html custom:header, h1:
<html xmlns:custom>
<body>
<custom:header text="header text"></custom:header>
</body>
</html>
script :
$el = $("custom\\:header");
$el.html($("<h1>").text($el.attr("text")));
( jQuery ). :
<custom:header text="header text">
<h1>header text</h1>
</custom:header>
css :
custom\:header {
color:red;
}