@@ -8,10 +8,10 @@ def get_name
88
99 # Add index on guides
1010 unless subpath . start_with? ( 'api' )
11- sidebarLink = at_css ( '.sidebar-link.active' )
12- allLinks = css ( '.sidebar-link:not([href="/"]):not([href="../index"])' )
11+ sidebar_link = at_css ( '.sidebar-link.active' )
12+ all_links = css ( '.sidebar-link:not([href="/"]):not([href="../index"])' )
1313
14- index = allLinks . index ( sidebarLink )
14+ index = all_links . index ( sidebar_link )
1515
1616 name . prepend "#{ index + 1 } . " if index
1717 end
@@ -28,41 +28,42 @@ def include_default_entry?
2828 end
2929
3030 def additional_entries
31- return [ ] unless subpath . start_with? ( 'api' )
31+ return [ ] unless subpath . start_with? ( 'api' )
3232
3333 entries = [
3434 [ 'Component Binding Helpers' , 'component-binding-helpers' , 'API Reference' ] ,
3535 [ 'Store' , 'vuex-store' , 'API Reference' ] ,
3636 ]
3737
3838 css ( 'h3' ) . each do |node |
39- entryName = node . content . strip
39+ entry_name = node . content . strip
4040
4141 # Get the previous h2 title
4242 title = node
4343 title = title . previous_element until title . name == 'h2'
4444 title = title . content . strip
4545 title . remove! '# '
4646
47- entryName . remove! '# '
47+ entry_name . remove! '# '
4848
49- unless entryName . start_with? ( 'router.' )
50- if title == "Vuex.Store Constructor Options"
51- entryName = "StoreOptions.#{ entryName } "
52- elsif title == "Vuex.Store Instance Properties"
53- entryName = "Vuex.Store.#{ entryName } "
54- elsif title == "Vuex.Store Instance Methods"
55- entryName = "Vuex.Store.#{ entryName } ()"
56- elsif title == "Component Binding Helpers"
57- entryName = "#{ entryName } ()"
49+ unless entry_name . start_with? ( 'router.' )
50+ case title
51+ when "Vuex.Store Constructor Options"
52+ entry_name = "StoreOptions.#{ entry_name } "
53+ when "Vuex.Store Instance Properties"
54+ entry_name = "Vuex.Store.#{ entry_name } "
55+ when "Vuex.Store Instance Methods"
56+ entry_name = "Vuex.Store.#{ entry_name } ()"
57+ when "Component Binding Helpers"
58+ entry_name = "#{ entry_name } ()"
5859 end
5960 end
6061
61- entries << [ entryName , node [ 'id' ] , 'API Reference' ]
62+ entries << [ entry_name , node [ 'id' ] , 'API Reference' ]
6263 end
6364
6465 entries
6566 end
6667 end
6768 end
68- end
69+ end
0 commit comments