how to embed code example

Example 1: get youtube embed code from url

<----------------------------------- HTML ---------------------------------->
YouTube ID: 


Embed code:


function getId(url) {
    var regExp = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
    var match = url.match(regExp);

    if (match && match[2].length == 11) {
        return match[2];
    } else {
        return 'error';
    }
}
<----------------------------------- JS ---------------------------------->
var myId = getId('http://www.youtube.com/watch?v=zbYf5_S7oJo');

$('#myId').html(myId);

$('#myCode').html('');

Example 2: embed

if(command === ''){
	const embed = new Discord.MessageEmbed();
	.setTitle('Title')
	.setDiscription('Discription')


	message.channel.send(embed)
   
}

Tags:

Misc Example