Ricerche recenti


Nessuna ricerca recente

Nicholas Smolney's Avatar

Nicholas Smolney

Data ingresso 15 apr 2021

·

Ultima attività 27 ott 2021

Seguiti

0

Follower

0

Attività totali

5

Voti

0

Abbonamenti

3

PANORAMICA ATTIVITÀ

Ultima attività di Nicholas Smolney

Nicholas Smolney ha commentato,

Commento nella community 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;
}

Visualizza commento · Data ultimo post: 25 mag 2018 · Nicholas Smolney

0

Follower

0

Voti

0

Commenti


Nicholas Smolney ha commentato,

Commento nella community 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 = $('

Visualizza commento · Data ultimo post: 25 mag 2018 · Nicholas Smolney

0

Follower

0

Voti

0

Commenti