[그누보드] Syntax Highlight 적용하기
- 05-19
- 74,881 회
- 0 건
그누보드 5.4 의 훅을 이용하였습니다. 따라서 5.4 미만의 버전에서는 지원하지 않습니다.
extend 폴더에 아무이름.php 로 아래의 내용을 입력하시면 됩니다.
글 작성시[ code] 와 [ /code] 사이의 텍스트에 적용됩니다.
[code]
function kh_tail_sub()
{
global $wr_id;
// 게시판에서 view.php 호출할때 적용하도록
if($_SERVER['SCRIPT_NAME'] != '/bbs/board.php' || !$wr_id) return;
?>
<link rel="stylesheet"
href="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/styles/a11y-dark.min.css">
<script src="//cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.4.0/build/highlight.min.js"></script>
<script>
function sh(id) {
var $id = $("#" + id);
if ($id.length > 0) {
var html = $id.html();
html = html.split("["+"code]").join("<pre><code>");
html = html.split("["+"/code]").join("</pre></code>");
$id.html(html);
$id.find("pre>code").each(function() {
var text = $.trim($(this).text());
$(this).text(text);
});
}
}
$(function() {
sh("bo_v_con");
hljs.configure({ tabReplace: ' ' });
hljs.initHighlighting();
});
</script>
<?
}
add_event('tail_sub', 'kh_tail_sub', G5_HOOK_DEFAULT_PRIORITY);
[/code]
* 참고
- https://highlightjs.org/
- https://sir.kr/g5_tip/4897