I have two *.docx files, one generated by LibreOffice Writer and one generated by PHPWord 0.14.0.
In the PHPWord version I have this:
<v:shape type="#whatever">
In the LibreOffice version I have this:
<v:shape id="whatever">
Are these basically the same thing? Like In HTML you'd do <div id="whatever">
and then you'd access it using document.querySelector('#whatever')
. idk if you can similarly select individual elements with Office Open XML but if you can is id="whatever"
pretty much the same thing as type="#whatever"
?