generated at
リンクとハッシュタグは同じ
Scrapboxでは、 #リンク [リンク] は、まったく同じ機能を持つ。
どちらもpage-link classを持つ。
ただし、typeは異なる。

#リンク

[リンク]

これにより、CSSのターゲットを切り分けることができる。

たとえば、以下のようにUserCSSを設定すれば、ちょっとボタン風になる。
style.css
a[type=hashtag]{ display: inline-block; padding: 0.2em 0.4em; text-decoration: none; background: aliceblue;/*ボタン色*/ background: #fff; border: 1px solid dodgerblue; color: #000; border-radius: 3px; transition: .3s; -webkit-transform: scale(1); transform: scale(1); } a[type="hashTag"]:hover{ -webkit-transform: scale(1.1); transform: scale(1.1); }