By default, the dates are entered in a YYYY-MM-DD format (where YYYY is the year, MM is the number of the month, and DD is the number of the day. You can change the format (for example, to something like January 1, 2020) using an XSLT extension.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="3.0">
<xsl:template match="
*[contains(@class, 'topic/created')]/@date |
*[contains(@class, 'topic/revised')]/@modified">
<xsl:attribute name="{name()}">
<xsl:value-of select="format-date(., '[MNn] [D01], [Y0001]')"/>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>com.oxygenxml.pdf.css.xsl.merged2merged XSLT extension
point:<publishing-template>
...
<pdf>
...
<xslt>
<extension
id="com.oxygenxml.pdf.css.xsl.merged2merged"
file="xslt/merged2mergedExtension.xsl"/>
</xslt>