Mercurial > hg > markup
annotate TODO @ 14:45b1c3f63730 default tip
version bump + release
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 27 May 2024 16:57:59 -0700 |
parents | 5b6f8024e177 |
children |
rev | line source |
---|---|
0 | 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" -> “foo” | |
15 | |
16 'foo' -> ‘foo’ |