diff options
author | https://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web> | 2012-04-06 19:57:02 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-04-06 19:57:02 -0400 |
commit | d8ab913061a60be86ca7ee8f3f7ffb76cb712377 (patch) | |
tree | d20d11f0a32d1d7bc450f4c21cb78cf7b1ddd21e /doc | |
parent | 3cd4366e9b996db45c2fcc87a2f6a44e19590502 (diff) | |
download | ikiwiki-d8ab913061a60be86ca7ee8f3f7ffb76cb712377.tar ikiwiki-d8ab913061a60be86ca7ee8f3f7ffb76cb712377.tar.gz |
ask for bold terms
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/definition_lists_should_be_bold.mdwn | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/bugs/definition_lists_should_be_bold.mdwn b/doc/bugs/definition_lists_should_be_bold.mdwn new file mode 100644 index 000000000..a6597a45c --- /dev/null +++ b/doc/bugs/definition_lists_should_be_bold.mdwn @@ -0,0 +1,20 @@ +Definition lists do not look great here... + +Here is an example. + +<dl> +<dt>this is a term</dt> +<dd>and this is its definition.</dd> +</dl> + +(This wiki doesn't support Markdown's extended definition lists, but still, this is valid markup.) + +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: + + /* definition lists look better with the term in bold */ + dt + { + font-weight: bold; + } + +:) How does that look? I can provide a patch for the base wiki if you guys really want... ;) -- [[anarcat]] |