**Symfony version(s) affected**: 5.1.9+ **Description** This probably was broken in https://github.com/symfony/symfony/pull/38991 **How to reproduce** ```php $input = new ArgvInput(); $output = new ConsoleOutput(); $style = new OutputFormatterStyle('white', 'blue', ['bold']); $output->getFormatter()->setStyle('title', $style); $output->getErrorOutput()->writeln('<title>This is still formatted.</title>'); $question = new Question('<title>This is no longer formatted.</title>'); (new QuestionHelper())->ask($input, $output, $question); ```