Add missing files to project structure in README.md

This commit is contained in:
Marcus Blättermann 2022-11-23 01:22:27 +01:00
parent 9d96e44a87
commit 0794e5c6cc
No known key found for this signature in database
GPG Key ID: A1E1F04008AC450D

View File

@ -648,8 +648,10 @@ In addition to the native markdown elements, you can use the components
| ├── languages.json # supported languages and statistical models | ├── languages.json # supported languages and statistical models
| ├── sidebars.json # sidebar navigations for different sections | ├── sidebars.json # sidebar navigations for different sections
| ├── site.json # general site metadata | ├── site.json # general site metadata
| ├── type-annotations.json # Type annotations
| └── universe.json # data for the spaCy universe section | └── universe.json # data for the spaCy universe section
├── public # compiled site ├── public # compiled site
├── setup # Jinja setup
├── src # source ├── src # source
| ├── components # React components | ├── components # React components
| ├── fonts # webfonts | ├── fonts # webfonts
@ -662,6 +664,8 @@ In addition to the native markdown elements, you can use the components
| | ├── models.js # layout template for model pages | | ├── models.js # layout template for model pages
| | └── universe.js # layout templates for universe | | └── universe.js # layout templates for universe
| └── widgets # non-reusable components with content, e.g. changelog | └── widgets # non-reusable components with content, e.g. changelog
├── .eslintrc.json # ESLint config file
├── .prettierrc # Prettier config file
├── gatsby-browser.js # browser-specific hooks for Gatsby ├── gatsby-browser.js # browser-specific hooks for Gatsby
├── gatsby-config.js # Gatsby configuration ├── gatsby-config.js # Gatsby configuration
├── gatsby-node.js # Node-specific hooks for Gatsby ├── gatsby-node.js # Node-specific hooks for Gatsby