/*
* @title ScrollToHighlightLine
* @description scrapboxで特定行にスクロールする
* @include https://scrapbox.io/
* @license MIT License
* @javascript_url
*/
// #L${lineId} を使ったが、.permalink を使ってもいいかもしれない
(()=>{
document.getElementById("L" + location.hash.substr(1)).scrollIntoView()
})();