We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d65c863 commit 1b3382fCopy full SHA for 1b3382f
src/librustdoc/html/static/main.js
@@ -1791,9 +1791,12 @@
1791
x[k].setAttribute('href', rootPath + href);
1792
}
1793
1794
- var li = document.createElement('li');
1795
- li.appendChild(code);
1796
- list.appendChild(li);
+ var display = document.createElement('h3');
+ addClass(display, "impl");
+ display.innerHTML = '<span class="in-band"><table class="table-display"><tbody>\
1797
+ <tr><td><code>' + code.outerHTML + '</code></td><td></td></tr></tbody></table>\
1798
+ </span>';
1799
+ list.appendChild(display);
1800
1801
1802
};
0 commit comments