himanoa
https://lh3.googleusercontent.com/-2g4WlxLT6Jo/AAAAAAAAAAI/AAAAAAAABAQ/_kDcwwomo8E/photo.jpg
ひまのあの†アカシックレコード†です
scrapboxのストレージ容量をゴミクズで埋めるのが得意です。よろしくお願いします
基本的に頭が悪い
code:script.js
scrapbox.PopupMenu.addButton({
title: 'MdSc', //"MdSc" is the name of popup button.
onClick: text =>{
////リスト////
//リストのマーカーが行頭にある場合
text=text.split(/\n/).map(line => line.replace(/^\*\-\+ /g,' ')).join('\n') //行頭以外にあるリストのマーカー(*, -, +)を消す
text=text.split(/\n/).map(line => line.replace(/\*\-\+ /g,'')).join('\n') //リストのインデントが半角スペース2個ずつの場合
//text=text.split(/\n/).map(line => line.replace(/ {2}/g,' ')).join('\n')
//リストのインデントが半角スペース4個ずつの場合
text=text.split(/\n/).map(line => line.replace(/ {4}/g,' ')).join('\n')
////数字付きリスト
text=text.split(/\n/).map(line => line.replace(/^(0-9+\. )/g,' $1')).join('\n') ////強調////
//太字
text=text.split(/\n/).map(line => line.replace(/\*{2}(^*+)\*{2}/g,'$1')).join('\n') text=text.split(/\n/).map(line => line.replace(/\_{2}(^_+)\_{2}/g,'$1')).join('\n') //イタリック
text=text.split(/\n/).map(line => line.replace(/\_(^_+)\_/g,'$1')).join('\n') ////取り消し線////
text=text.split(/\n/).map(line => line.replace(/\~\~(\~+|^~+)\~\~/g,'$1')).join('\n') ////Header level 1-6////
//Header level 1
text=text.split(/\n/).map(line => line.replace(/^# (.*)/g,'$1')).join('\n')
//Header level 2
text=text.split(/\n/).map(line => line.replace(/^#{2} (.*)/g,'$1')).join('\n')
//Header level 3
text=text.split(/\n/).map(line => line.replace(/^#{3} (.*)/g,'$1')).join('\n')
//Header level 4
text=text.split(/\n/).map(line => line.replace(/^#{4} (.*)/g,'$1')).join('\n')
//Header level 5
text=text.split(/\n/).map(line => line.replace(/^#{5} (.*)/g,'$1')).join('\n')
//Header level 6
text=text.split(/\n/).map(line => line.replace(/^#{6} (.*)/g,'$1')).join('\n')
////リンクと画像////
//Hyperlink without linktext / Image without alt text
//Image with alt text
//Hyperlink with linktext
//URL with angle brackets
////水平線////
text=text.split(/\n/).map(line => line.replace(/^(\*|\-|\_){3,}/g,'/icons/hr.icon')).join('\n') ////エスケープを元に戻す////
text=text.split(/\n/).map(line => line.replace(/\\([\\|`|\*|_|\{|\}|\|\|\(|\)|#|\+|\-|\.|\!])/g,'$1')).join('\n') return text;
}
})
scrapbox.PopupMenu.addButton({
title: '赤',
onClick: text => text.split('\n').map(line => [! ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: 'オレンジ',
onClick: text => text.split('\n').map(line => [% ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: '緑',
onClick: text => text.split('\n').map(line => [# ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: '青',
onClick: text => text.split('\n').map(line => [~ ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: '灰',
onClick: text => text.split('\n').map(line => [" ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: 'ピンク',
onClick: text => text.split('\n').map(line => [' ${line}]).join('\n')
})
scrapbox.PopupMenu.addButton({
title: '紫',
onClick: text => text.split('\n').map(line => [? ${line}]).join('\n')
})
code:style.css
.deco-\! {
color: red;
}
.deco-\% {
color: orange;
}
.deco-\# {
color: green;
}
.deco-\~ {
}
.deco-\" {
color: gray;
}
.deco-\' {
color: pink;
}
.deco-\? {
color: purple;
}