A date converter converting normal dates into latin written dates.
You can include this script on your website using this CDN:
https://cdn.jsdelivr.net/gh/PickwickSoft/latindate.js@v0.1.3/date.min.js
After that, use this method to generate the latin date:
var yourDate = new Date("YYYY-MM-DD") // For current date use Date() without parameters
var latinDate = dateToLatinDate(yourDate); // Returns a String
Important: The Date class does not support the european date format DD.MM.YYYY
!
Make sure to pass the right format for a correct date in latin.