]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/definition_lists_should_be_bold.mdwn
new patch
[ikiwiki.git] / doc / bugs / definition_lists_should_be_bold.mdwn
1 Definition lists do not look great here...
2
3 Here is an example.
4
5 <dl>
6 <dt>this is a term</dt>
7 <dd>and this is its definition.</dd>
8 </dl>
9
10 (This wiki doesn't support Markdown's extended definition lists, but still, this is valid markup.)
11
12 I believe `<dt>` should be made bold. I have added this to my `local.css`, and I would hate to add this all the time forever:
13
14     /* definition lists look better with the term in bold */
15     dt
16     {
17         font-weight: bold;
18     }
19
20 :) How does that look? I can provide a patch for the base wiki if you guys really want... ;) -- [[anarcat]]
21
22 > What you dislike seems to be the default rendering of definition lists by
23 > browsers. I don't think it's ikiwiki's place to override browser defaults
24 > for standard markup in the document body, at least not in the default
25 > antitheme. --[[Joey]] 
26
27 > > How about in the actiontab theme then? :)