Is there a way to apply a style (e.g. make the text bold) on a raw value (e.g. of a script)?
use Shuchkin\SimpleXLSXGen;
$rows = [
// prints the whole string correctly
[SimpleXLSXGen::raw('<a href="#">some link</a>')],
// prints the whole string correctly
[SimpleXLSXGen::raw('<b><a href="#">some link</a></b>')],
// prints a bolded hyperlink 'some link' instead of a bolded raw string "<a href="#">some link</a>"
['<b>' . SimpleXLSXGen::raw('<a href="#">some link</a>'). '</b>'],
];
SimpleXLSXGen::fromArray($rows)
->downloadAs('test_raw.xlsx');
This prints out these values:

I'm trying to make the 3rd row value to look like this:

Is there a way to apply a style (e.g. make the text bold) on a raw value (e.g. of a script)?
This prints out these values:

I'm trying to make the 3rd row value to look like this:
