Date text variable

(Couldnt think of a better way to word the title)

Currently my displays have the date in the format of Wednesday 09th September.

I use [dddd] [DD]th [MMMM] for this.

As you can see, it will always show th, so for instance 09th is fine, but 23th is not fine. Is there any way to for Xibo to automatically output the correct suffix for the date?

Try

[dddd] [DD][S] [MMMM]

Or failing that, try:

[dddd] [Do] [MMMM]

There’s documentation in the clock module for this here:
http://xibo.org.uk/manual/en/media_module_clock.html

I use an Embedded HTML item to display real time date and time.

HTML:

<!DOCTYPE html>
 <html>
    <body>
        <p style="font-size:xx-large" id="date"></p>
    </body>
 </html>

Javascript:

<script type="text/javascript">
document.getElementById("date").innerHTML = Date();
</script>

And it works just fine for me

hi, just to let you know it worked :smile: (I dont know how to set this question as answered but)