https://docs.blender.org/api/current/bpy.types.UILayout.html
The icon lists take too much space on this page, making it difficult to navigate.
They repeat 12 times and take:
- 81% of the characters
- 66% of the words
- 54% of the lines
I have to use this javascript before I can look something up. The Icon Viewer is the way to look for icons.
var paragraphs = document.getElementsByTagName('p');
for (let paragraph of paragraphs) {
var result = paragraph.innerHTML.search("TRACKING_CLEAR_FORWARDS'");
if (result != -1){
paragraph.remove();
}
}