# html.strip ## Function Remove the HTML tags and keep the text outside the tags. ## Syntax ```bt html(text).strip() ``` ## Parameters None. ## Return value | Type | Description | | ------ | ------ | | String | Text after removing tags. | ## Code Example ```bt result = html('

Hello BT

').strip() // Output: Hello BT print result ``` ## Notes - strip is a lightweight tag stripper, not a full HTML parser.