/
githubmirror
/
pandas
Обзор
Документация
Войти
/
githubmirror
/
pandas
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
doc/source/user_guide/templates/html_table_structure.html
48 строк
1 KB
attack68
REGR: Subclassing `Styler` and addressing `from_custom_template` (#42091)
28 июн 2021, 16:24
Не верифицирован
28 июн 2021, 16:24
e6b57b9
Код
Авторство
О чём код?
<!-- This is an HTML fragment that gets included into a notebook & rst document Inspired by nbconvert https://github.com/jupyter/nbconvert/blob/8ac591a0b8694147d0f34bf6392594c2811c1395/docs/source/template_structure.html --> <style type="text/css"> /* Overrides of notebook CSS for static HTML export */ .template_block { background-color: hsla(120, 60%, 70%, 0.2); margin: 10px; padding: 5px; border: 1px solid hsla(120, 60%, 70%, 0.5); border-left: 2px solid black; } .template_block pre { background: transparent; padding: 0; } .big_vertical_ellipsis { font-size: 24pt; } </style> <div class="template_block" >before_table</div> <div class="template_block" >table <pre><table ...></pre> <div class="template_block">caption</div> <div class="template_block" >thead <div class="template_block" >before_head_rows</div> <div class="template_block">head_tr (loop over headers)</div> <div class="template_block" >after_head_rows</div> </div> <div class="template_block" >tbody <div class="template_block" >before_rows</div> <div class="template_block">tr (loop over data rows)</div> <div class="template_block" >after_rows</div> </div> <pre></table></pre> </div><!-- /table --> <div class="template_block" >after_table</div>