Issue with PDF document generated with Document tempalteDescriptionIssue with PDF document generated with Document templateFont used is Arial but it changes to Times New RomanSteps to Reproduce 1. Take any OOB instance with plugin Document Templates Version 25.0.2 installed2. Navigate to sn_doc_html_template.LIST3. Create any new HTML Template4. Type anything in Body and set the font to Arial 5. Verify the source code for HTML Body, the font family will look like thisstyle="font-size: 14pt; font-weight: normal; font-family: arial, helvetica, sans-serif;"6. Click on Preview, the font Arial is changed to Times New RomanWorkaround1. In the script include "DocumentTemplateAjaxSNC", go to the method 'getPrefilledBody'.https://instance-name.service-now.com/nav_to.do?uri=sys_script_include.do?sys_id=e3184ce6b7c30010e15bf597ee11a92e 2. See if there is a line within 'getPrefilledBody' like so: var uniCodes = /[\u0000-\u001f,\u007f-\u009f]/g;3. If this line exists, replace it with the following line:var uniCodes = /[\u0000-\u001f]|[\u007f-\u009f]/g;4. After you save this file with the previous change, the PDF document should no longer remove commas from the document. Related Problem: PRB1704169