コンテンツにスキップ

英文维基 | 中文维基 | 日文维基 | 草榴社区

利用者:Los688/insert.js

お知らせ: 保存した後、ブラウザのキャッシュをクリアしてページを再読み込みする必要があります。

多くの WindowsLinux のブラウザ

  • Ctrl を押しながら F5 を押す。

Mac における Safari

  • Shift を押しながら、更新ボタン をクリックする。

Mac における ChromeFirefox

  • Cmd Shift を押しながら R を押す。

詳細についてはWikipedia:キャッシュを消すをご覧ください。

// This script is under public domain, and comes with ABSOLUTELY NO WARRANTY.
// You can use/modify/redistribute without any permission.  未使用

function insertTagsHtml (left, right, text){
  return '<a onclick="insertTags(\'' + left + '\', \'' + right + '\', \'\');return false" href="#">' + text +'</a>';
}

$(function() {
  if(!document.getElementById('editform')) return;
var html = '<div style="font-size:smaller">';

  var f = document.getElementById("editform");
   html += insertTagsHtml('\u007B\u007BCommonscat|', '}}', '', '\u007B\u007BCommonscat|}}') + ' · ';
   html += insertTagsHtml('\u007B\u007Bcoord||||N||||E|display=title}}', '', '\u007B\u007BCoord}}')+ ' · ';
   html += insertTagsHtml('\u007B\u007Bcol-begin}}', '', '\u007B\u007Bcol-begin}}')+ ' · ';
   html += insertTagsHtml('\u007B\u007Bcol-2}}', '', '\u007B\u007Bcol-2}}')+ ' · ';
   html += insertTagsHtml('\u007B\u007Bcol-end}}', '', '\u007B\u007Bcol-end}}')+ ' · ';
   html += insertTagsHtml('class\u003D', '',  'class\u003D')+ ' · ';
   html += insertTagsHtml('text-align:', '',  'text-align:')+ ' · ';

  var p = document.createElement('p');
  p.innerHTML = html;
  f.parentNode.insertBefore(p, f);

  var p = document.createElement('p');
  var s = document.getElementById('contentSub');
  s.parentNode.insertBefore(p, s.nextSibling);
});