Ok, so I have this list,
[['A', 'B', 'C'], ['D', 'E', 'F'], ['G', 'H', 'I']]
I want to add html tags to the values in the inner lists.
How would I go about doing this?
i.e.
[['<b>A</b>', '<b>B</b>', '<b>C</b>'], ['<b>D</b>', '<b>E</b>', '<b>F</b>'], ['<b>G</b>', '<b>H</b>', '<b>I</b>']]