/*
* @title Markdownのリンク形式でタイトルとURLをalert
* @description [タイトル](URL)という形式でページのタイトルとURLをalertします
* @include *
* @license MIT License
* @javascript_url
*/
(function(){
const content = "[" + document.title + "](" + location.href + ")";
alert(content);
// これは動かない
// copy(content)
})();