(options: CommonOptions)
| 94 | |
| 95 | |
| 96 | def read_client_index_html(options: CommonOptions) -> str: |
| 97 | return ( |
| 98 | (CLIENT_BUILD_DIR / "index.html") |
| 99 | .read_text() |
| 100 | .format(__head__=vdom_head_elements_to_html(options.head)) |
| 101 | ) |
| 102 | |
| 103 | |
| 104 | def vdom_head_elements_to_html(head: Sequence[VdomDict] | VdomDict | str) -> str: |
no test coverage detected