You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
615 B

1 month ago
html
head
style.
body {
padding: 50px;
}
body
div(style='color:red;background:green')
div(style={color: 'red', background: 'green'})
div&attributes({style: 'color:red;background:green'})
div&attributes({style: {color: 'red', background: 'green'}})
mixin div()
div&attributes(attributes)
+div(style='color:red;background:green')
+div(style={color: 'red', background: 'green'})
- var bg = 'green';
div(style={color: 'red', background: bg})
div&attributes({style: {color: 'red', background: bg}})
+div(style={color: 'red', background: bg})