";
}
=== Tag Plugin ===
.dokuwiki div.tags {
/*border-top: 2px dotted __border__;*/
clear: both;
/*margin-bottom: 1.4em;*/
}
.dokuwiki div.tagstop {
/*border-bottom: 2px dotted __border__;
margin-top: -1.3em;
margin-bottom: .4em;*/
}
.dokuwiki div.tags span a,
.dokuwiki div.tagstop span a {
color: #2962ff;
background-color: #e3f2fd;
padding: 4px 4px;
border-radius: 4px;
margin-left: 1px;
}
public function tagLinks($tags) {
if (empty($tags) || ($tags[0] == '')) {
return '';
}
$links = array();
foreach ($tags as $tag) {
$links[] = $this->tagLink($tag);
}
return implode(''.DOKU_LF.DOKU_TAB, $links);
}
===== 관리 =====
==== 템플릿 스타일 설정 ====
__site_width__ = "1330px"
__sidebar_width__ = "16em"
__tablet_width__ = "800px"
__phone_width__ = "480px"
__theme_color__ = "#333333"
(( 최소 해상도 1366px 기준 (스크롤바 제외 1330px) ))
==== 환경 설정 > 보이기 ====
=== 이동 경로 추적 비활성화 ===
$conf['breadcrumbs'] = 0;
=== 타이포그래피 대체 비활성화 ===
$conf['typography'] = '0';
=== 목차의 최대 단계 비활성화 ===
$conf['maxtoclevel'] = '0';
=== 문단의 최대 편집 단계 비활성화 ===
$conf['maxseclevel'] = '0';
=== 문서 이름을 첫 문단 제목으로 사용 ===
$conf['useheading'] = '1';
=== 이름공간 읽기 권한 설정 ===
$conf['sneaky_index'] = 1;
=== 문서 숨기기 설정 ===
$conf['hidepages'] = '(start|sidebar)';
==== 환경 설정 > 인증 ====
=== 접근 제어 목록 (ACL) 사용 ===
$conf['useacl'] = 1;
=== 슈퍼유저 설정 ===
$conf['superuser'] = '@admin';
=== 도쿠위키 동작 비활성화 ===
$conf['disableactions'] = 'backlink,recent,register';
==== 환경 설정 > 스팸 방지 ====
=== 색인 전 지연 시간 (초) ===
$conf['indexdelay'] = 0;
==== 환경 설정 > 링크 ====
=== 링크에 대한 타겟 창 ===
$conf['target']['interwiki'] = '_blank';
$conf['target']['extern'] = '_blank';
==== 환경 설정 > 신디케이션 (RSS) ====
=== 사이트맵 생성 날짜 빈도 (일) ===
$conf['sitemap'] = 1;
==== 환경 설정 > 고급 ====
=== 업데이트와 보안 경고 비활성화 ===
$conf['updatecheck'] = 0;
=== 멋진 URL 사용 ===
$conf['userewrite'] = '2';
=== 존재하지 않는 문서 404 상태 코드 반환 ===
$conf['send404'] = 1;
==== 환경 설정 > Feature Flags ====
=== defer_js 비활성화 ===
$conf['defer_js'] = 0;
((Indexmenu Plugin: If you use the 'js'-option of the indexmenu plugin, you have to disable the 'defer_js'-setting. This setting is temporary, in the future the indexmenu plugin will be improved.))
{{tag>"도쿠위키" "DokuWiki"}}