JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrrender($html, $options); } } if (! function_exists('Termwind\parse')) { /** * Parse HTML to a string that can be rendered in the terminal. */ function parse(string $html): string { return (new HtmlRenderer)->parse($html)->toString(); } } if (! function_exists('Termwind\terminal')) { /** * Returns a Terminal instance. */ function terminal(): Terminal { return new Terminal; } } if (! function_exists('Termwind\ask')) { /** * Renders a prompt to the user. * * @param iterable|null $autocomplete */ function ask(string $question, ?iterable $autocomplete = null): mixed { return (new Question)->ask($question, $autocomplete); } }