I have a multiline string literal in toml, and want to preserve those lines in html, that is to say, put in paragraphs/<br>.
[[note]]
content = '''
Content Essai A
Content Essai B
'''
I thought .RenderString on .Content would do that, render the text as if it was a markdown file, but no, it’s seen as one big line. Did I miss something ?