You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
240 B

from .. import globals # pylint: disable=redefined-builtin
def add_body_html(code: str) -> None:
globals.get_client().body_html += code + '\n'
def add_head_html(code: str) -> None:
globals.get_client().head_html += code + '\n'