File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,10 @@ class EntriesFilter < Docs::EntriesFilter
44
55 def get_name
66 if slug . start_with? ( 'book' ) || slug . start_with? ( 'reference' )
7- name = at_css ( "#sidebar a[href='#{ File . basename ( slug ) } ']" )
8- name ? name . content : 'Introduction'
7+ name = at_css ( "h2" , "h1" )
8+ ch1 = slug [ /ch(\d +)-(\d +)/ , 1 ]
9+ ch2 = slug [ /ch(\d +)-(\d +)/ , 2 ]
10+ name ? "#{ ch1 } .#{ ch2 } . #{ name . content } " : 'Introduction'
911 elsif slug == 'error-index'
1012 'Compiler Errors'
1113 else
Original file line number Diff line number Diff line change 33module Docs
44 class Rust < UrlScraper
55 self . type = 'rust'
6- self . release = '1.87 .0'
6+ self . release = '1.88 .0'
77 self . base_url = 'https://doc.rust-lang.org/'
88 self . root_path = 'book/index.html'
99 self . initial_paths = %w(
You can’t perform that action at this time.
0 commit comments