links

Apple Notes supports native links. When you create native links it can be clicked in Apple Notes. On your Mac you can type CMD+K and it will open link creation dialog. You can have clickable links to websites, emails and phone numbers. Unfortunately it's not very obvious how to create those links on iPhone. So here is the simple tool to help you! Enter your link, add optional title, press "Copy" and paste it into the Apple Note.
name label placeholder required type onclick
website Website https://montaigne.io true url  
link-title Link title Text to display   text  
website-link-btn Copy     button var copyBtn=this;var text = document.getElementById('website').value;var linkTitle = document.getElementById('link-title').value || text;var outputValue='<a href='+text+'>'+linkTitle+'</a>';var blob = new Blob([outputValue], { type: 'text/html' });var richTextInput = new ClipboardItem({ 'text/html': blob });navigator.clipboard.write([richTextInput]).then(function(){copyBtn.setAttribute('title', 'Copied');setTimeout(function(){copyBtn.setAttribute('title', 'Copy');}, 5000)});
name label placeholder required type onclick
email Email hi@montaigne.io true email  
link-title Link title Text to display   text  
email-link-btn Copy     button var copyBtn=this;var text = document.getElementById('email').value;var linkTitle = document.getElementById('link-title').value || text;var outputValue='<a href=mailto:'+text+'>'+linkTitle+'</a>';var blob = new Blob([outputValue], { type: 'text/html' });var richTextInput = new ClipboardItem({ 'text/html': blob });navigator.clipboard.write([richTextInput]).then(function(){copyBtn.setAttribute('title', 'Copied');setTimeout(function(){copyBtn.setAttribute('title', 'Copy');}, 5000)});
name label placeholder required type onclick
phone Phone 555-55-55 true phone  
link-title Link title Text to display   text  
email-link-btn Copy     button var copyBtn=this;var text = document.getElementById('phone').value;var linkTitle = document.getElementById('link-title').value || text;var outputValue='<a href=tel:'+text+'>'+linkTitle+'</a>';var blob = new Blob([outputValue], { type: 'text/html' });var richTextInput = new ClipboardItem({ 'text/html': blob });navigator.clipboard.write([richTextInput]).then(function(){copyBtn.setAttribute('title', 'Copied');setTimeout(function(){copyBtn.setAttribute('title', 'Copy');}, 5000)});