R a i n b o w Import: author: themeName:




<!DOCTYPE html>
  <html>
  <head>
    <link rel="stylesheet" type="text/css" />
    <style>
      body {
        background-color: #FFFFFF;
      }
    </style>
  </head>
  <body>
    <!-- This is a comment -->
    <p>three&amp;&amp;&amp;spaces</p>
  </body>
</html>
/* 
* multi line comment
*/
void main() {
  initPolymer().run(() {
    XmlElement xml = XML.parse(defaultXmlString);
    XmlCollection<XmlElement> theme = xml.query("colorTheme");
    theme[0].children.forEach((XmlElement e){
      var inputBox = new Element.tag("input-box");
      inputBox.id = e.name;
      inputBox.name = e.name;
      String s = '''multi line                                     
      string''';
      selection;
      container.append(inputBox);
    });
    appendTitle(querySelector("#output").querySelectorAll("span"));
  });
}
// single line comment
@CustomTag('input-box')
class InputBox extends PolymerElement {
  @published String name = "default";
  @published String color = "#ff0000";
  InputBox.created() : super.created() {}
  static void one(String className,empty){
    one(className,empty);
  }
  void setBackground(){
    List l = querySelectorAll(".$name");
    if(name == "currentLine"){
      l.forEach((HtmlElement e){
        e.style.backgroundColor = color;
      });
    }
  }
}