TeamPage をインストールすると、このプラグインも自動的にインストールされます。特別な場合を除き、このプラグインを個別にダウンロードしてインストールする必要はありません。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link href="./resources/style.css" rel="stylesheet" type="text/css"> <title>サンプル HTML ファイル</title> </head> <body> <div id="page"> <!-- コメント --> <h1 id="title">見出し</h1> <p>ここに段落の文章を書きます。</p> </div> </body> </html>
(function() { function tryHighlightingAll() { try { Prism.highlightAll(); } catch (e) { console.log(e); } } const eventsToListenFor = [ "load", "auto-refresh-load", "comment-insert", "comment-update", "feed-item-expand" ]; for (let i = 0; i < eventsToListenFor.length; i ++) { Proteus.addHandler(eventsToListenFor[i], tryHighlightingAll); } })();