File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ class EntriesFilter < Docs::EntriesFilter
44 def get_name
55 name = at_css ( 'h1' ) . content
66 name . sub! %r{\s *#\s *} , ''
7+ name . sub! %r{\s *\u200B \s *} , ''
78 name
89 end
910
1011 def get_type
1112 name = at_css ( 'h1' ) . content
1213 name . sub! %r{\s *#\s *} , ''
14+ name . sub! %r{\s *\u200B \s *} , ''
1315 name
1416 end
1517
Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ class Vitest < UrlScraper
99 }
1010
1111 options [ :root_title ] = 'Vitest'
12+ options [ :download_images ] = false
1213
1314 options [ :attribution ] = <<-HTML
1415 © 2021-Present Anthony Fu< br >
1516 © 2021-Present Matias Capeletto< br >
1617 Licensed under the MIT License.
1718 HTML
1819
19- self . release = '1.1.3 '
20+ self . release = '1.2.2 '
2021 self . base_url = 'https://vitest.dev/'
2122 self . initial_paths = %w( guide/ )
2223 html_filters . push 'vitest/entries' , 'vite/clean_html'
You can’t perform that action at this time.
0 commit comments