static S hEmbedYoutube(S youtubeID) { ret hEmbedYoutube(youtubeID, 300, 250); } // text is HTML actually static S hEmbedYoutube(S youtubeID, int w, int h, S text) { ret hEmbedYoutube(youtubeID, w, h).replace("View on YouTube", text); } static S hEmbedYoutube(S youtubeID, int w, int h) { youtubeID = extractYouTubeID(youtubeID); ret "
View on YouTube".replace("{*}", youtubeID); }