//■無駄なスペースとタブの削除 //行頭・行末の無駄なスペースとタブの削除 replaceallfast "^[ \t]+"," ",inselect,regular; replaceallfast "[ \t]+$","",inselect,regular; //和文中の無駄なスペースとタブの削除 replaceallfast "\\f[、-黑]\\f[ \t]+\\f[、-黑]\\f","\\1\\3",inselect,regular; //カッコ類で始まるときの行頭のスペースを削除 replaceallfast "^ \\f[「『〈《([〔【{“‘\n]\\f","\\1",inselect,regular; //■行頭1字下げ処理 replaceallfast "\n\\f[^ 「『〈《([〔【{“‘\n]\\f","\n \\1",inselect,regular; /