1
0
mirror of https://github.com/shuchkin/simplexlsxgen.git synced 2023-08-10 21:12:59 +03:00

Updated examples

This commit is contained in:
Andrew Robinson 2022-04-23 11:34:13 +10:00 committed by GitHub
parent d49f8996df
commit 4543922330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,9 +60,9 @@ $data = [
['Italic', '<i>12345.67</i>'], ['Italic', '<i>12345.67</i>'],
['Underline', '<u>12345.67</u>'], ['Underline', '<u>12345.67</u>'],
['Strike', '<s>12345.67</s>'], ['Strike', '<s>12345.67</s>'],
['Green', '<color rgb="0000FF00">12345.67</color>'], ['Green', '<style color="0000FF00">12345.67</style>'],
['Bold Red Text', '<b><color rgb="00FF0000">12345.67</color></b>'], ['Bold Red Text', '<b><style color="00FF0000">12345.67</style></b>'],
['Blue Text and Yellow Fill', '<fill rgb="00FFFF00"><color rgb="000000FF">12345.67</color></fill>'], ['Blue Text and Yellow Fill', '<style bgcolor="00FFFF00" color="000000FF">12345.67</style>'],
['Bold + Italic', '<b><i>12345.67</i></b>'], ['Bold + Italic', '<b><i>12345.67</i></b>'],
['Hyperlink', 'https://github.com/shuchkin/simplexlsxgen'], ['Hyperlink', 'https://github.com/shuchkin/simplexlsxgen'],
['Italic + Hyperlink + Anchor', '<i><a href="https://github.com/shuchkin/simplexlsxgen">SimpleXLSXGen</a></i>'], ['Italic + Hyperlink + Anchor', '<i><a href="https://github.com/shuchkin/simplexlsxgen">SimpleXLSXGen</a></i>'],