@@ -13,7 +13,7 @@
.replace(/\r?\n/g,'\n')//改行コードを統一
.replace(/[ ]{2,}/g,' ')//半角スペースの連続を一つにまとめる
.replace(/\t\n/g,'\n')//¥t対応
-.body.replace(/ \n/g,'\n')//半角スペース+改行コードを ¥n に
+.replace(/ \n/g,'\n')//半角スペース+改行コードを ¥n に
.replace(/\n{3,}/g,'\n\n'); //¥nの3つ以上の連続を(3個でも4個以上でも)¥n¥nとする。2個連続は2個連続のまま。
/*
* @title 【スマホ用】プレーンテキストでコピペしたい。
* @description サイト上のテキスト書式をリセットします。
* @include http://*
* @license MIT License
* @require
@private
iPhone Safariで確認。見切り発車。 
*/
(function(){
var body=document.body.innerText
.replace(/\r?\n/g,'\n')//改行コードを統一
.replace(/[ ]{2,}/g,' ')//半角スペースの連続を一つにまとめる
.replace(/\t\n/g,'\n')//¥t対応
.replace(/ \n/g,'\n')//半角スペース+改行コードを ¥n に
.replace(/\n{3,}/g,'\n\n'); //¥nの3つ以上の連続を(3個でも4個以上でも)¥n¥nとする。2個連続は2個連続のまま。
/*
var body=document.body.innerText;
body=body.replace(/\n{3,}/g,'\n\n') //¥nの3つ以上の連続を ¥n¥n とする
.replace(/[ \t ]\n/g,'\n') //[¥tなど]+改行コードを ¥n とする
.replace(/\t\n/g,'\n') //¥t対応
.replace(/[ \t ]{2,}/g,' ') //[¥tなど]の連続をSPACE一つにまとめる
.replace(/\r?\n/g,'\n'); //改行コードを統一
*/
//css
var bodyStyle=document.getElementsByTagName('body')[0].style;
bodyStyle.all='initial';//reset
bodyStyle.width='100%';
bodyStyle.height='100%';
bodyStyle.overFlow='hidden';
document.getElementsByTagName('html')[0].style.width=window.innerWidth+'px';
document.getElementsByTagName('html')[0].style.height=window.innerHeight+'px';
body='<textarea style="padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+body+'</textarea>';
document.body.innerHTML=body;
document.getElementsByTagName('textarea')[0].style.width=(window.innerWidth-20)+'px';
})()
/*
javascript:(function(){var%20b=document.body.innerText;b=b.replace(/\n{3,}/g,"\n\n").replace(/[%20\t%E3%80%80]\n/g,"\n").replace(/[%20\t%E3%80%80]{2,}/g,"%20").replace(/\r?\n/g,"\n");var%20a=document.getElementsByTagName("body")[0].style;a.all="initial";a.width="100%25";a.height="100%25";a.overFlow="hidden";document.getElementsByTagName("html")[0].style.width=window.innerWidth+"px";document.getElementsByTagName("html")[0].style.height=window.innerHeight+"px";b='<textarea%20style="padding:6px;height:100%25;font-size:16px;border-radius:0"%20readonly>'+b+"</textarea>";document.body.innerHTML=b;document.getElementsByTagName("textarea")[0].style.width=(window.innerWidth-20)+"px"})();
*/
/*
javascript:(function(){var b=document.body.innerText;b=b.replace(/\n{3,}/g,"\n\n").replace(/[ \t ]\n/g,"\n").replace(/\t\n/g,"\n").replace(/[ \t ]{2,}/g," ").replace(/\r?\n/g,"\n");var a=document.getElementsByTagName("body")[0].style;a.all="initial";a.width="100%";a.height="100%";a.overFlow="hidden";document.getElementsByTagName("html")[0].style.width=window.innerWidth+"px";document.getElementsByTagName("html")[0].style.height=window.innerHeight+"px";b='<textarea style="padding:6px;height:100%;font-size:16px;border-radius:0" readonly>'+b+"</textarea>";document.body.innerHTML=b;document.getElementsByTagName("textarea")[0].style.width=(window.innerWidth-20)+"px"})();
*/
/*
javascript:(function(){var%20b=document.body.innerText;b=b.replace(/\n{3,}/g,"\n\n").replace(/[%20\t%E3%80%80]\n/g,"\n").replace(/\t\n/g,"\n").replace(/[%20\t%E3%80%80]{2,}/g,"%20").replace(/\r?\n/g,"\n");var%20a=document.getElementsByTagName("body")[0].style;a.all="initial";a.width="100%";a.height="100%";a.overFlow="hidden";document.getElementsByTagName("html")[0].style.width=window.innerWidth+"px";document.getElementsByTagName("html")[0].style.height=window.innerHeight+"px";b='<textarea%20style="padding:6px;height:100%;font-size:16px;border-radius:0"%20readonly>'+b+"</textarea>";document.body.innerHTML=b;document.getElementsByTagName("textarea")[0].style.width=(window.innerWidth-20)+"px"})();
*/