How to make tooltips render html?

I have Html in my translation strings (or i could use markdown) - either way i cannot get it to render in tooltips
RichEditor::make('outcome')
                                               ->label(__('Outcome'))
                                               ->columnSpanFull()
                                               ->required()
                                               ->hint(__('What is the expected outcome of this lesson?'))
                                               ->hintIcon('heroicon-m-question-mark-circle', tooltip: __('tooltips.outcome_description')),

I have tried rendering html strings etc to no avail! Any suggestions?
Was this page helpful?