comparison TODO @ 0:5b6f8024e177

initial commit
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 13:01:49 -0800
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:5b6f8024e177
1 Block level elements should be distinguished from non-block level elements:
2 For instance, div('foo') should render:
3
4 <div>
5 foo
6 </div>
7
8 Versus b('foo') should result in
9
10 <b>foo</b>
11
12 Quoting - smart quoting should be implemented:
13
14 "foo" -> &#8220;foo&#8221;
15
16 'foo' -> &#8216;foo&#8217;