Pesquisas recentes


Sem pesquisas recentes

Nicholas Smolney's Avatar

Nicholas Smolney

Entrou em 15 de abr. de 2021

·

Última atividade em 27 de out. de 2021

Seguindo

0

Seguidores

0

Atividade total

5

Votos

0

Assinaturas

3

VISÃO GERAL DA ATIVIDADE

Atividade mais recente por Nicholas Smolney

Nicholas Smolney comentou,

Comentário na comunidade 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;
}

Exibir comentário · Publicado 25 de mai. de 2018 · Nicholas Smolney

0

Seguidores

0

Votos

0

Comentários


Nicholas Smolney comentou,

Comentário na comunidade 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 = $('

Exibir comentário · Publicado 25 de mai. de 2018 · Nicholas Smolney

0

Seguidores

0

Votos

0

Comentários