Browse Source

add categories

Gergely Gombos 1 year ago
parent
commit
df398bd145
1 changed files with 3 additions and 2 deletions
  1. 3 2
      lib/docs/filters/react/entries_react_dev.rb

+ 3 - 2
lib/docs/filters/react/entries_react_dev.rb

@@ -4,11 +4,12 @@ module Docs
       def get_name
         canary_copy = '- This feature is available in the latest Canary'
         name = at_css('article h1').content
-        return name.sub(canary_copy, ' (experimental)')
+        return name.sub(canary_copy, ' (Experimental)')
       end
 
       def get_type
-        return 'TODO add types'
+        breadcrumb_nodes = css('a.tracking-wide')
+        return breadcrumb_nodes.last.content || 'Miscellaneous'
       end
     end
   end