what does $('is t').text() mean in cell format example mean?
what does $('is t').text() mean in cell format example mean?

This question has an accepted answers - jump to answer
This discussion has been closed.
This question has an accepted answers - jump to answer
Answers
Its part of the XML structure that makes up the XLSX file. Just like any other jQuery / CSS selector in that form, it is selecting all
t
tags insideis
tags.This is where those tags are being created.
The open spreadsheet documentation has a full rundown on the XML that it defines.
Allan