1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-04-14 11:18:47 +02:00
joplin/ElectronClient/app/note-content.html

8 lines
190 B
HTML
Raw Normal View History

2017-11-05 16:51:03 +00:00
<div id="content"></div>
<script>
const {ipcRenderer} = require('electron')
ipcRenderer.on('setHtml', (event, html) => {
document.getElementById('content').innerHTML = html;
});
</script>