はてなリンク記法を展開

    @@ -1,7 +1,7 @@ /* * @title はてなリンク記法を展開 - * @description はてなリンク記法をa要素に展開します。つまり [http://b.hatena.ne.jp/:title=hoge] を <a href="http://b.hatena.ne.jp/">はてなブックマーク</a> に変換します。 - * @include http://* + * @description はてなリンク記法をa要素に展開します。つまり [http://b.hatena.ne.jp/:title=hoge] を <a href="http://b.hatena.ne.jp/">hoge</a> に変換します。 + * @include http://blog.hatena.ne.jp/* * @license MIT License * @require */ @@ -16,7 +16,6 @@ function parseHatenaLinkNotation(notation) { var result = {}; - console.log(notation); var m_url = notation.match(/https?:\/\/[^:]+/); if (m_url) { result['url'] = m_url[0]; @@ -77,13 +76,7 @@ return frag; } -var textarea = document.getElementsByTagName('textarea')[0]; -var notation = getHatenaLinkNotationOnCursor(textarea); -if (notation) { - var result = parseHatenaLinkNotation(notation); - if (typeof(result['title']) != 'string') { - result['title'] = 'ここにタイトルを入力してください'; - } +function expandHatenaLinkNotation(result) { var expanded = result['embed'] ? expandEmbedHatenaLinkNotation(result) : expandSimpleHatenaLinkNotation(result); var comment = document.createComment(notation); var div = document.createElement('div'); @@ -91,4 +84,24 @@ div.appendChild(expanded); var replaceHTML = div.innerHTML; textarea.value = textarea.value.replace(notation, replaceHTML); +} + +var textarea = document.getElementsByTagName('textarea')[0]; +var notation = getHatenaLinkNotationOnCursor(textarea); +if (notation) { + var result = parseHatenaLinkNotation(notation); + if (typeof(result['title']) == 'string') { + expandHatenaLinkNotation(result); + } else { + var syntax = '[' + result['url'] + ':title]'; + $.ajax({ url: 'http://blog.hatena.ne.jp/api/external/json?url='+encodeURIComponent('http://d.hatena.ne.jp/api/syntax?syntax=' + encodeURIComponent(syntax)) }).done(function(json) { + var div = document.createElement('div'); + div.innerHTML = json[syntax]; + result['title'] = div.firstChild.innerHTML; + }).fail(function() { + result['title'] = 'ここにタイトルを入力'; + }).always(function () { + expandHatenaLinkNotation(result); + }); + } }
  • /*
     * @title はてなリンク記法を展開
     * @description はてなリンク記法をa要素に展開します。つまり [http://b.hatena.ne.jp/:title=hoge] を <a href="http://b.hatena.ne.jp/">hoge</a> に変換します。
     * @include http://blog.hatena.ne.jp/*
     * @license MIT License
     * @require 
     */
    
    function getHatenaLinkNotationOnCursor(textarea) {
      var text = textarea.value;
      var caret = textarea.selectionStart;
      var start = text.lastIndexOf('[', caret);
      var end = text.indexOf(']', caret-1);
      return text.substring(start, end+1);
    }
    
    function parseHatenaLinkNotation(notation) {
      var result = {};
      var m_url = notation.match(/https?:\/\/[^:]+/);
      if (m_url) {
         result['url'] = m_url[0];
      }
      var m_title = notation.match(/:title(?:=(.+))?\]$/);  //  [http://b.hatena.ne.jp/:title=hoge] 
      if (m_title) {
         result['title'] = m_title[1] ? m_title[1] : true;
      }
      var m_embed = notation.match(/:embed(:cite)?]$/);  // [http://b.hatena.ne.jp/:embed:cite] 
      if (m_embed) {
         result['embed'] = true;
         if (m_embed[1]) {
            result['cite'] = true;
         }
      }
      return result;
    }
    
    function expandSimpleHatenaLinkNotation(result) {
      var a = document.createElement('a');
      a.setAttribute('data-snf-link', 'keep');
      a.href = result['url'];
      if (result['title']) {
        if (typeof(result['title']) == 'string') {
          a.innerHTML = result['title'];
        } else {
          a.innerHTML = result['title'];
        }
      } else {
        a.innerHTML = result['url'];
      }
      return a;
    }
    
    function expandEmbedHatenaLinkNotation(result) {
      var iframe = document.createElement('iframe');
      iframe.setAttribute('data-snf-link', 'keep');
      iframe.src = 'https://hatenablog-parts.com/embed?url=' + encodeURIComponent(result['url']);
      iframe.title = result['title'];
      iframe.className = 'embed-card embed-blogcard';
      iframe.scrolling = 'no';
      iframe.style.display = 'block';
      iframe.style.width = '100%';
      iframe.style.height = '190px';
      iframe.style.maxWidth = '500px';
      iframe.style.margin = '10px 0px';
      var frag = document.createDocumentFragment();
      frag.appendChild(iframe);
      if (result['cite']) {
        var cite = document.createElement('cite');
        cite.className = 'hatena-citation';
        var citeLink = document.createElement('a');
        citeLink.href = result['url'];
        citeLink.innerHTML = result['title'];
        cite.appendChild(citeLink);
        frag.appendChild(cite);
      }
      return frag;
    }
    
    function expandHatenaLinkNotation(result) {
      var expanded = result['embed'] ? expandEmbedHatenaLinkNotation(result) : expandSimpleHatenaLinkNotation(result);
      var comment = document.createComment(notation);
      var div = document.createElement('div');
      div.appendChild(comment);
      div.appendChild(expanded);
      var replaceHTML = div.innerHTML;
      textarea.value = textarea.value.replace(notation, replaceHTML);
    }
    
    var textarea = document.getElementsByTagName('textarea')[0];
    var notation = getHatenaLinkNotationOnCursor(textarea);
    if (notation) {
      var result = parseHatenaLinkNotation(notation);
      if (typeof(result['title']) == 'string') {
        expandHatenaLinkNotation(result);
      } else {
        var syntax = '[' + result['url'] + ':title]';
        $.ajax({ url: 'http://blog.hatena.ne.jp/api/external/json?url='+encodeURIComponent('http://d.hatena.ne.jp/api/syntax?syntax=' + encodeURIComponent(syntax)) }).done(function(json) { 
           var div = document.createElement('div');
           div.innerHTML = json[syntax];
           result['title'] = div.firstChild.innerHTML;
        }).fail(function() {
           result['title'] = 'ここにタイトルを入力';
        }).always(function () {
           expandHatenaLinkNotation(result);
        });
      }
    }
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2018/02/23 09:23:15 - 2018-02-23
  2. 2018/02/23 09:20:14 - 2018-02-23
  3. 2018/02/19 17:56:48 - 2018-02-19
  4. 2018/02/19 17:54:19 - 2018-02-19
  5. 2018/02/19 12:39:23 - 2018-02-19
  6. 2018/02/19 12:08:23 - 2018-02-19
  7. 2018/02/19 12:01:03 - 2018-02-19
  8. 2018/02/19 11:28:16 - 2018-02-19
  9. 2018/02/19 11:19:40 - 2018-02-19
  10. 2018/02/16 20:22:55 - 2018-02-16
  11. 2018/02/16 19:32:49 - 2018-02-16
  12. 2018/02/16 19:28:18 - 2018-02-16