mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
HTML Search: HTML tags are displayed as a part of object name
This commit is contained in:
parent
d4fc9f6bd0
commit
f280ebb000
1
CHANGES
1
CHANGES
@ -46,6 +46,7 @@ Bugs fixed
|
|||||||
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
|
* #10031: py domain: Fix spurious whitespace in unparsing various operators (``+``,
|
||||||
``-``, ``~``, and ``**``). Patch by Adam Turner.
|
``-``, ``~``, and ``**``). Patch by Adam Turner.
|
||||||
* #10460: logging: Always show node source locations as absolute paths.
|
* #10460: logging: Always show node source locations as absolute paths.
|
||||||
|
* HTML Search: HTML tags are displayed as a part of object name
|
||||||
* #10520: HTML Theme: Fix use of sidebar classes in ``agogo.css_t``.
|
* #10520: HTML Theme: Fix use of sidebar classes in ``agogo.css_t``.
|
||||||
* #6679: HTML Theme: Fix inclusion of hidden toctrees in the agogo theme.
|
* #6679: HTML Theme: Fix inclusion of hidden toctrees in the agogo theme.
|
||||||
* #10566: HTML Theme: Fix enable_search_shortcuts does not work
|
* #10566: HTML Theme: Fix enable_search_shortcuts does not work
|
||||||
|
@ -88,7 +88,7 @@ const _displayItem = (item, highlightTerms, searchTerms) => {
|
|||||||
linkEl.href = linkUrl + "?" + params.toString() + anchor;
|
linkEl.href = linkUrl + "?" + params.toString() + anchor;
|
||||||
linkEl.innerHTML = title;
|
linkEl.innerHTML = title;
|
||||||
if (descr)
|
if (descr)
|
||||||
listItem.appendChild(document.createElement("span")).innerText =
|
listItem.appendChild(document.createElement("span")).innerHTML =
|
||||||
" (" + descr + ")";
|
" (" + descr + ")";
|
||||||
else if (showSearchSummary)
|
else if (showSearchSummary)
|
||||||
fetch(requestUrl)
|
fetch(requestUrl)
|
||||||
|
Loading…
Reference in New Issue
Block a user