Escaping dots in markdown, e.g. German date format

Hi, when I want to write a date in the common German date format e.g. “14. September 2018” und a textfield that I read with kirbytext() it interprets the “14.” as a list item and creates a list formatting. How can I prevent this and display the date correctly as standard paragraph?
Many thanks
C.

You can use a backslash escape: https://daringfireball.net/projects/markdown/syntax#backslash

1 Like

Thanks, the \ did it.