link.md
by
noromanba
2013-01-29 [2013/01/29 07:35:37]
(Forked from
mkdlink by
jdg)
prompt Markdown inline link
@@ -1,24 +1,16 @@
/*
* @title link.md
- * @description 閲覧ページのMarkdown inline linkをprompt(Forked)
+ * @description prompt Markdown inline link
* @include http://*
- * @license MIT License
+ * @license MIT License http://opensource.org/licenses/MIT
+ * @contributor jdg http://let.hatelabo.jp/jdg/let/gYC-xdO5tsuJfQ (Fork of)
* @require
- * @see http://let.hatelabo.jp/jdg/let/gYC-xdO5tsuJfQ (Fork of, id:jdg)
- * @see http://daringfireball.net/projects/markdown/syntax (Markdown official syntax)
*/
// # Changes
-// + not screen transition when press 'OK'
-// + allow no title cf. https://api.github.com/gists/2370972
+// - fix screen transition when press 'OK'
+// - allow no title e.g. https://api.github.com/gists/2370972
-var isEdit = true;
-
-prompt('Copy Me', '[' + (function() {
- var t;
- if (isEdit) {
- t = prompt('Edit Title', document.title);
- }
- return t || document.title || location.href; // greedy
-})(); + '](' + location.href + ')');
-void 0;
+// c.f. http://daringfireball.net/projects/markdown/syntax (Markdown official syntax)
+prompt('Copy Me', '[' + (document.title || location.href) + '](' + location.href + ')');
+void 0;
/*
* @title link.md
* @description prompt Markdown inline link
* @include http://*
* @license MIT License http://opensource.org/licenses/MIT
* @contributor jdg http://let.hatelabo.jp/jdg/let/gYC-xdO5tsuJfQ (Fork of)
* @require
*/
// # Changes
// - fix screen transition when press 'OK'
// - allow no title e.g. https://api.github.com/gists/2370972
// c.f. http://daringfireball.net/projects/markdown/syntax (Markdown official syntax)
prompt('Copy Me', '[' + (document.title || location.href) + '](' + location.href + ')');
void 0;
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。