jwasnoggin
jwasnoggin
Adding this was sufficient for me to get `tel:` links working: ```javascript document.addEventListener("deviceready", function () { if (device.platform == 'iOS') { $(document).on('click', 'a[href^=mailto], a[href^=tel]', function (e) { e.preventDefault(); var href...
I also needed this functionality so I've created a PR for this: #286
Looks like this has been fixed by https://github.com/NeoLSN/cordova-plugin-android-permissions/pull/118
I've got what I believe is a similar issue, but in this case elements that contain only a space are having the space removed after being converted to an object...
I had a look at the code change in https://github.com/guigrpa/docx-templates/pull/353 and tried to extend it for FOR loops as well, but I couldn't figure out how to do it without...
"||" is by default the literal XML delimiter. So anything after that is being treated as literal XML. You'll need to either specify something else for the delimiter that won't...
In #1591 it uses glob 9 which is not deprecated, so presumably that one works?
{HTML summary} should work according to [the docs](https://github.com/guigrpa/docx-templates?tab=readme-ov-file#html). But note that it will only display properly in Microsoft Word, not in any other editors.