I'm currently using the OneNote - Create page in a section action to provision new pages on a weekly basis within my OneNote. I've added the following HTML block to the 'Page content' which is working well however it wraps the content with double quotes.
Is anyone aware of a way to remove the quotes from the output?
<html>
<head>
<title>@{formatDateTime(body('Current_time'),'dd/MM/yy')}</title>
<meta name='created' content='@{body('Current_time')}' />
</head>
<body>
<p>Monday:<br></p>
<p>Tuesday:<br></p>
<p>Wednesday:<br></p>
<p>Thursday:<br></p>
<p>Friday:<br></p>
</body>
</html>
