Getting an error in running the latest version of the script.
Hi Trying out the script for a document filled with Tables and images and got the following error.
Unfortunately it is not saying which line is at fault in the document for me to fix it or temporarily comment/remove it out.
Thanks Srihari
Message details TypeError: Cannot find function getIndentFirstLine in object Table
Hi,
I am also getting this same issue when trying to run the script. Is there any work around?
Me either
yes i can confirm this issue still exists
same here, did anybody find the reason already?
yep, happened to me too!
I found that setting the values of ind_f, ind_s and ind_e to 0 worked.
In other words, changing these lines:
var ind_f = element.getIndentFirstLine();
var ind_s = element.getIndentStart();
var ind_e = element.getIndentEnd();
to
var ind_f = 0;
var ind_s = 0;
var ind_e = 0;
My export is succeeding now, tables showing up as html. Thanks for the fix!