Open adamlwgriffiths opened 3 years ago
The example in the README has an undefined variable, specifically header.
header
[header, h1(u'The Website', id='header')],
Based on the output, I suspect this should be changed to
[h1(u'The Website', id='header')],
The resulting HTML also differs from what it should generate:
does not generate
<h1 id="header">Welcome to the site!</h1>
The example in the README has an undefined variable, specifically
header
.Based on the output, I suspect this should be changed to
The resulting HTML also differs from what it should generate:
does not generate