최근 검색


최근 검색 없음

Nicholas Smolney's Avatar

Nicholas Smolney

가입한 날짜: 2021년 4월 15일

·

마지막 활동: 2021년 10월 27일

팔로잉

0

팔로워

0

총 활동 수

5

투표 수

0

플랜 수

3

활동 개요

님의 최근 활동 Nicholas Smolney

Nicholas Smolney님이 에 댓글을 입력함

커뮤니티 댓글 Discussion - Tips and best practices from the community

and if anyone else is interested, I made a small addition to my css file to indent for subsequent levels

 

.toc ul{
padding-left: 20px;
}

댓글 보기 · 2018년 5월 25일에 게시됨 · Nicholas Smolney

0

팔로워

0

투표 수

0

댓글


Nicholas Smolney님이 에 댓글을 입력함

커뮤니티 댓글 Discussion - Tips and best practices from the community

Hey Dave, see below for how I addressed this:

Basically the code didn't account for the case when your next heading is going back a level (current_level < previous_level), so I added that case and added an array to keep track of the previous levels.

/*** Table of contents code ***/
var $headers = $('.article-body h1');

if ($headers.length > 0) {
var $toc = $('

');
var $firstUl = $('

댓글 보기 · 2018년 5월 25일에 게시됨 · Nicholas Smolney

0

팔로워

0

투표 수

0

댓글