Skip to content

Instantly share code, notes, and snippets.

/*
This little script fetches a json array from outlook with integromat and php
Json looks like this:
["08:00 - 17:00 All day event","09:00 - 09:15 agenda row 2","10:00 - 17:00 agenda row 3"]
Just type :agenda: and it will fetches the array and write the newlines.
*/
document.addEventListener('input', function(e){
@gijsepping
gijsepping / roam-block-to-zapier.txt
Last active September 23, 2020 11:52
Roam zend block to zapier zap
document.addEventListener('input', function(e){
if ('_webhookHook' in window) {
setTimeout(function(){ window._webhookHook(e); }, 0);
}
});
window._webhookHook = async function(e) {
// logging
window._e = e;