view TODO @ 0:5b6f8024e177

initial commit
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 13:01:49 -0800
parents
children
line wrap: on
line source

Block level elements should be distinguished from non-block level elements:
For instance, div('foo') should render:

<div>
foo
</div>

Versus b('foo') should result in 

<b>foo</b>

Quoting -  smart quoting should be implemented:

"foo" -> &#8220;foo&#8221;

'foo' -> &#8216;foo&#8217;