File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 27
27
url : " /overviews/index.html"
28
28
- title : Books
29
29
url : " /books.html"
30
- - title : Scala FAQs
30
+ - title : Scala FAQ
31
31
url : " /tutorials/FAQ/index.html"
32
32
- title : Language Spec
33
33
url : http://scala-lang.org/files/archive/spec/2.13/
Original file line number Diff line number Diff line change 1
1
---
2
2
layout : singlepage-overview
3
- title : Scala FAQs
3
+ title : Scala FAQ
4
4
permalink : /tutorials/FAQ/index.html
5
5
redirect_from : " /tutorials/FAQ/breakout.html"
6
6
redirect_from : " /tutorials/FAQ/chaining-implicits.html"
Original file line number Diff line number Diff line change @@ -505,6 +505,8 @@ $(document).ready(function () {
505
505
let isInOverviewsFolder = overviewsFolders . some ( of => thisPageUrl . startsWith ( of ) ) ;
506
506
if ( isRootFile ) {
507
507
thisPageUrl = thisPageUrl + '.md' ;
508
+ } else if ( thisPageUrl . indexOf ( "tutorials/FAQ/" ) == 0 ) {
509
+ thisPageUrl = '_overviews/' + thisPageUrl . substring ( "tutorials/" . length ) + '.md' ;
508
510
} else if ( isInOverviewsFolder ) {
509
511
thisPageUrl = '_overviews/' + thisPageUrl + '.md' ;
510
512
} else {
You can’t perform that action at this time.
0 commit comments