2.0.0-alpha.33
Features
- Table of contents is now highlighted depending on current active headings. (thanks to awesome @SantiagoGdaR) #1896
 - Official blog plugin can now generate feed for blog posts. (thanks to awesome @moozzyk) #1916
 - BREAKING 
prismThemeis renamed tothemeas part newprismobject inthemeConfigfield in yourdocusaurus.config.js. Eg:themeConfig: {
- prismTheme: require('prism-react-renderer/themes/dracula'),
+ prism: {
+ theme: require('prism-react-renderer/themes/dracula'),
+ },
}, - Added new 
prismoptiondefaultLanguagethat is used if the language is not specified in code blocks. #1910 
Fixes
- Fix babel/env not picking the correct browserslist configuration during development. When running 
docusaurus start,process.env.NODE_ENVis now consistently set todevelopment. - Ensure routes config generation to be more consistent in ordering. Nested routes should be placed last in routes.js. This will allow user to create 
src/pages/docs.jsto create custom docs page for/docsor evensrc/pages/docs/super.jsto create page for/docs/super/; - Fix watcher does not trigger reload on windows.
 - Fix build compilation error if exists only one code tab.
 - Add minor padding to docs container so that hash-link won't be cut off.
 
Others
- Misc dependency upgrades.
 - Stability improvement (more tests) & refactoring on docs plugin to prevent regression.