Mercurial > p > roundup > code
changeset 8354:586e49dda652
docs: fix doc for registerUtilMethod; style tweak for internal docs.
Pul the list pseudoheader style spacing tweat ot the stylesheet used
to generate the released docs.
Fix doc on arg to function defined with registerUtilMethod.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 03 Jul 2025 13:23:36 -0400 |
| parents | 85aae98b8c82 |
| children | 226a4f391ae2 |
| files | doc/reference.txt website/www/_static/style.css |
| diffstat | 2 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/reference.txt Thu Jul 03 13:19:01 2025 -0400 +++ b/doc/reference.txt Thu Jul 03 13:23:36 2025 -0400 @@ -1151,8 +1151,8 @@ <customizing.html#adding-a-time-log-to-your-issues-4>`_ for an example) * ``instance.registerUtilMethod`` is also used for adding `templating - utilities`_, and provides a client instance by default to the - function. This makes more complex templating actions easier to + utilities`_, and provides a TemplatingUtils instance by default to + the function. This makes more complex templating actions easier to use. (see :ref:`dynamic_csp` for an example) * ``instance.registerAction`` is used to add more actions to the
--- a/website/www/_static/style.css Thu Jul 03 13:19:01 2025 -0400 +++ b/website/www/_static/style.css Thu Jul 03 13:23:36 2025 -0400 @@ -51,6 +51,15 @@ * + * { margin-block-start: 1.2em;} +/* shrink spacing between first and following paragraph in a list item + when the first paragraph is bold/strong. Try to tie the first paragraph + pseudo header closer to the following paragraph. */ +li > p:has(strong):first-child + { + /* background: red; */ + margin-block-end: -0.75em; +} + /* shrink spacing between list elements in tables of contents, badge displays */ div.toctree-wrapper * + *, div.contents * + *, div.release_info * {
