SSI timefmt 抑制小时中的前导零

SSI timefmt suppress leading zero in the hour

这个Server Side Include片段:

<!--#config timefmt="%a, %d%b'%y %I:%M%P %Z" -->
Content updated: <!--#flastmod virtual='../pages/$JLC_CONTENT_FILE' --> 

产生:

如何取消小时中的前导零?

timefmt 使用标准 C 函数 strftime(),因此“%k”去掉前导零:

<!--#config timefmt="%a, %e%b'%y %k:%M%P %Z" -->