from the polymer documents (https://www.polymer-project.org/1.0/docs/devguide/properties) I found how to pass arguments to elements like this:
<script>
Polymer({
is: 'x-custom',
properties: {
userName: String
}
});
</script>
<x-custom user-name="Scott"></x-custom>
But is it possible to pass html as well? e.g.
<my-element>
<h1>Hello world<h2>
</my-element>
I've created a 'my-element' in polymer and would like to add content to it. The polymer element sole purpose is to style all content inside (the h1).