view TODO @ 13:dad89e44cc0a default tip

fix import
author Jeff Hammel <k0scist@gmail.com>
date Tue, 24 Nov 2020 08:14:09 -0800
parents 5b6f8024e177
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;