icon-suggestion
ソースコード
code:script.js
const waringEl = document.createElement('div');
waringEl.style.background = 'black';
waringEl.style.padding = '2em';
const titleEl = document.createElement('h2');
titleEl.style.fontSize = 'xx-large';
titleEl.style.color = 'yellow';
titleEl.innerHTML = ⚠️ <a href="https://scrapbox.io/customize/icon-suggestion">icon-suggestion</a> による警告;
const bodyEl = document.createElement('section');
bodyEl.style.fontSize = 'large';
bodyEl.style.color = 'white';
bodyEl.innerHTML = `
<p>
2021/9/19 より、icon-suggestion が提供される URL が以下に変更されました。
</p>
<ul>
</ul>
<p>
この変更に伴い、icon-suggestion の導入方法が変更になりました。今後古い URL で提供している
icon-suggestion はご利用頂けなくなります。新しい URL で提供される icon-suggestion へのお乗り換えをお願いします。
新しい URL で提供される icon-suggestion の導入方法は、以下のページを参照して下さい。
</p>
<ul>
</ul>
<p>
この警告は新しい URL で提供される icon-suggestion に乗り換えるか、
icon-suggestion の読み込みをやめるまで表示され続けます。
</p>
`.trim();
waringEl.appendChild(titleEl);
waringEl.appendChild(bodyEl);
const appEl = document.querySelector('.app');
if (appEl) appEl.prepend(waringEl);
const registerIconSuggestion = null;
const Icon = null;
const fetchMemberPageIcons = null;
const fetchRelatedPageIconsByHashTag = null;
export { registerIconSuggestion, Icon, fetchMemberPageIcons, fetchRelatedPageIconsByHashTag };