Skip to content

Commit

Permalink
Revert "static ToC, correct header processing; metanorma/isodoc#113; m…
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Apr 21, 2020
1 parent 227a8ac commit 32fab3b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
24 changes: 20 additions & 4 deletions lib/isodoc/rsd/html/scripts.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,24 @@
<script>
$("#toc").on('click', 'li', function(e) {
$(this).parent().find('li.toc-active').removeClass('toc-active');
$(this).addClass('toc-active');
});
//TOC generation
$('#toc').toc({
'selectors': toclevel(), //elements to use as headings
'container': 'main', //element to find all selectors in
'smoothScrolling': true, //enable or disable smooth scrolling on click
'prefix': 'toc', //prefix for anchor tags and class names
'onHighlight': function(el) {}, //called when a new section is highlighted
'highlightOnScroll': true, //add class to heading that is currently in focus
'highlightOffset': 100, //offset to trigger the next headline
'anchorName': function(i, heading, prefix) { //custom function for anchor name
return prefix+i;
},
'headerText': function(i, heading, $heading) { //custom function building the header-item text
return $heading.text();
},
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
return $heading[0].tagName.toLowerCase();
}
});

</script>

<script>
Expand Down
2 changes: 1 addition & 1 deletion spec/metanorma/processor_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<p class="zzSTDTitle1"></p>
<div id="H">
<h1 id="toc0">1&#xA0; Terms and definitions</h1>
<h1>1&#xA0; Terms and definitions</h1>
<h2 class="TermNum" id="J">1.1&#xA0;<p class="Terms" style="text-align:left;">Term2</p></h2>
</div>
</main>
Expand Down

0 comments on commit 32fab3b

Please sign in to comment.