Create a proper template to export one note to formatted file readable by Microsoft Word

$Text can be styled and then exported, but this becomes a manual process as the $Text styling can’t be set automatically. I also note you want a 1-to-1 note to exported file ration as you want to add these notes into Word one at a time. Using your examples above try a template like this:

<!DOCTYPE html>
<html>
<head>
	<meta http-equiv="content-type" content="text/html; charset=utf-8">
	<title>^title^</title>
	<style>
		body {font-family: "helvetica neue", helvetica, sans-serif;}
		p {font-size: 1em;}
		.head {text-align: center; font-size:1.4em;}
	</style>
</head>
<body>
<p class="head">^title^</p>
^text^
</body>
</html>

Word can read HTML, so simply copy/paste the rendered text (preview pane, web browser, etc.) or import the exported file into Word.

Test file: notes-for-word.tbx (97.5 KB)

1 Like