createMarkdownPre

    @@ -5,6 +5,7 @@ * @license MIT License * @require jquery * @require https://raw.github.com/madapaja/jquery.selection/master/src/jquery.selection.js + * @javascript_url */ var bef = $('textarea').selection();
  • /*
     * @title createMarkdownPre
     * @description テキストエリアの選択範囲の行頭にスペースを4つ入れる
     * @include 
     * @license MIT License
     * @require jquery
     * @require https://raw.github.com/madapaja/jquery.selection/master/src/jquery.selection.js
     * @javascript_url
     */
    
    var bef = $('textarea').selection();
    var aft = bef.replace(/^/g, '    ');
    aft = aft.replace(/\n/g, '\n    ');
    console.log(aft);
    $('textarea').selection('replace',{text: aft});
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2014/03/01 00:41:10 - 2014-03-01
  2. 2014/03/01 00:35:05 - 2014-03-01
  3. 2014/03/01 00:32:54 - 2014-03-01
  4. 2014/03/01 00:23:05 - 2014-03-01