# html.to_string ## Function Returns the current HTML raw text. ## Syntax ```bt html(text).to_string() ``` ## Parameters None. ## Return value | Type | Description | | ------ | ------ | | String | The current HTML text. | ## Code Example ```bt result = html('
BT
').to_string() // Output:
BT
print result ``` ## Notes - to_string does not escape or sanitize text.