├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── babel.config.js ├── blog ├── 2020-10-26-laravel-v2.md ├── 2021-06-08-laravel-v3.mdx ├── 2022-09-10-laravel-v4.mdx └── 2023-12-25-laravel-v4-28.md ├── docusaurus.config.js ├── laravel ├── 0-intro.mdx ├── 1-getting-started.md ├── 120-contributing.md ├── 20-migrating.mdx ├── 50-hooks.md ├── 95-troubleshooting.md ├── 98-architecture.md ├── advanced │ ├── 10-localization.mdx │ ├── 20-example-requests.mdx │ ├── 40-writing-plugins.mdx │ ├── 50-theming.mdx │ └── _category_.yml ├── documenting │ ├── 0-index.mdx │ ├── 1-api-information.mdx │ ├── 20-endpoint-metadata.mdx │ ├── 30-headers.mdx │ ├── 40-url-parameters.mdx │ ├── 50-query-body-parameters.mdx │ ├── 60-responses.mdx │ ├── 70-custom-endpoints.mdx │ └── _category_.yml ├── reference │ ├── 10-config.md │ ├── 20-annotations.md │ ├── 25-html.md │ ├── 30-plugin-api.md │ └── _category_.yml └── tasks │ ├── 10-generating.md │ ├── 20-modifying.md │ ├── 40-customising-features.md │ ├── 50-sorting-and-inheritance.mdx │ └── _category_.yml ├── laravel_versioned_docs ├── version-3.x │ ├── 0-intro.mdx │ ├── 1-getting-started.md │ ├── 100-migrating-apidoc.md │ ├── 120-contributing.md │ ├── 20-migrating-v3.md │ ├── 40-generating-documentation.md │ ├── 50-hooks.md │ ├── 95-troubleshooting.md │ ├── 98-architecture.md │ ├── advanced │ │ ├── 10-example-requests.mdx │ │ ├── 40-writing-plugins.md │ │ ├── 50-theming.mdx │ │ └── _category_.yml │ ├── documenting │ │ ├── 0-index.md │ │ ├── 1-api-information.md │ │ ├── 20-endpoint-metadata.md │ │ ├── 30-headers.md │ │ ├── 40-url-parameters.md │ │ ├── 50-query-body-parameters.mdx │ │ ├── 60-responses.md │ │ ├── 70-custom-endpoints.md │ │ └── _category_.yml │ └── reference │ │ ├── 10-config.md │ │ ├── 20-annotations.md │ │ ├── 25-html.md │ │ ├── 30-plugin-api.md │ │ └── _category_.yml └── version-4.x │ ├── 0-intro.mdx │ ├── 1-getting-started.md │ ├── 120-contributing.md │ ├── 20-migrating-v4.md │ ├── 50-hooks.md │ ├── 95-troubleshooting.md │ ├── 98-architecture.md │ ├── advanced │ ├── 10-localization.mdx │ ├── 20-example-requests.mdx │ ├── 40-writing-plugins.mdx │ ├── 50-theming.mdx │ └── _category_.yml │ ├── documenting │ ├── 0-index.mdx │ ├── 1-api-information.mdx │ ├── 20-endpoint-metadata.mdx │ ├── 30-headers.mdx │ ├── 40-url-parameters.mdx │ ├── 50-query-body-parameters.mdx │ ├── 60-responses.mdx │ ├── 70-custom-endpoints.mdx │ └── _category_.yml │ ├── reference │ ├── 10-config.md │ ├── 20-annotations.md │ ├── 25-html.md │ ├── 30-plugin-api.md │ └── _category_.yml │ └── tasks │ ├── 10-generating.md │ ├── 20-modifying.md │ ├── 40-customising-features.md │ ├── 50-sorting-and-inheritance.mdx │ └── _category_.yml ├── laravel_versioned_sidebars ├── version-3.x-sidebars.json └── version-4.x-sidebars.json ├── laravel_versions.json ├── nodejs ├── 0-intro.mdx ├── 20-migrating-v3.md ├── 40-generating-documentation.md ├── 95-troubleshooting.md ├── 98-architecture.md ├── 99-contributing.md ├── documenting │ ├── 0-index.md │ ├── 1-api-information.md │ ├── 20-endpoint-metadata.md │ ├── 30-headers.md │ ├── 40-url-parameters.md │ ├── 50-query-body-parameters.mdx │ ├── 60-responses.md │ ├── 70-custom-endpoints.md │ └── _category_.yml ├── getting-started │ ├── 1-adonis.md │ ├── 2-express.md │ ├── 3-restify.md │ └── _category_.yml └── reference │ ├── 10-config.md │ ├── 20-annotations.md │ ├── 25-html.md │ └── _category_.yml ├── package.json ├── sidebarsLaravel.js ├── sidebarsNodejs.js ├── src ├── components │ ├── AdonisExpressRestifyTabs.js │ ├── AttributesTagsTabs.js │ ├── HomepageFeatures.js │ ├── HomepageFeatures.module.css │ └── LaravelLumenTabs.js ├── css │ └── custom.css └── pages │ ├── index.js │ └── index.module.css ├── static ├── .nojekyll └── img │ ├── favicon.ico │ ├── logo.png │ ├── og-image-scribe.png │ ├── screenshots │ ├── customization-example-requests.png │ ├── docs-bare-example.png │ ├── docs-intro.png │ ├── docs-rich-1.png │ ├── docs-rich-2.png │ ├── endpoint-auth.png │ ├── endpoint-bodyparams-1.png │ ├── endpoint-bodyparams-2.png │ ├── endpoint-bodyparams-3.png │ ├── endpoint-bodyparams-4.png │ ├── endpoint-groups.png │ ├── endpoint-queryparams-1.png │ ├── endpoint-queryparams-2.png │ ├── endpoint-queryparams-3.png │ ├── endpoint-queryparams-4.png │ ├── endpoint-responses-1.png │ ├── endpoint-responses-2.png │ ├── endpoint-responses-3.png │ ├── endpoint-responses-4.png │ ├── endpoint-title-description.png │ ├── endpoint-urlparams-1.png │ ├── endpoint-urlparams-2.png │ ├── html-aside.png │ ├── html-badges.png │ ├── html-badges2.png │ ├── html-fancyheading.png │ ├── object-fields.jpg │ ├── plugins.png │ ├── response-fields-1.png │ ├── response-fields-2.png │ ├── response-headers-closed.png │ ├── response-headers-open.png │ └── tryitout-button.jpg │ ├── undraw_building_websites.svg │ ├── undraw_conversation.svg │ └── undraw_working_remotely.svg └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/babel.config.js -------------------------------------------------------------------------------- /blog/2020-10-26-laravel-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/blog/2020-10-26-laravel-v2.md -------------------------------------------------------------------------------- /blog/2021-06-08-laravel-v3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/blog/2021-06-08-laravel-v3.mdx -------------------------------------------------------------------------------- /blog/2022-09-10-laravel-v4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/blog/2022-09-10-laravel-v4.mdx -------------------------------------------------------------------------------- /blog/2023-12-25-laravel-v4-28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/blog/2023-12-25-laravel-v4-28.md -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /laravel/0-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/0-intro.mdx -------------------------------------------------------------------------------- /laravel/1-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/1-getting-started.md -------------------------------------------------------------------------------- /laravel/120-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/120-contributing.md -------------------------------------------------------------------------------- /laravel/20-migrating.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/20-migrating.mdx -------------------------------------------------------------------------------- /laravel/50-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/50-hooks.md -------------------------------------------------------------------------------- /laravel/95-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/95-troubleshooting.md -------------------------------------------------------------------------------- /laravel/98-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/98-architecture.md -------------------------------------------------------------------------------- /laravel/advanced/10-localization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/advanced/10-localization.mdx -------------------------------------------------------------------------------- /laravel/advanced/20-example-requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/advanced/20-example-requests.mdx -------------------------------------------------------------------------------- /laravel/advanced/40-writing-plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/advanced/40-writing-plugins.mdx -------------------------------------------------------------------------------- /laravel/advanced/50-theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/advanced/50-theming.mdx -------------------------------------------------------------------------------- /laravel/advanced/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/advanced/_category_.yml -------------------------------------------------------------------------------- /laravel/documenting/0-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/0-index.mdx -------------------------------------------------------------------------------- /laravel/documenting/1-api-information.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/1-api-information.mdx -------------------------------------------------------------------------------- /laravel/documenting/20-endpoint-metadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/20-endpoint-metadata.mdx -------------------------------------------------------------------------------- /laravel/documenting/30-headers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/30-headers.mdx -------------------------------------------------------------------------------- /laravel/documenting/40-url-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/40-url-parameters.mdx -------------------------------------------------------------------------------- /laravel/documenting/50-query-body-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/50-query-body-parameters.mdx -------------------------------------------------------------------------------- /laravel/documenting/60-responses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/60-responses.mdx -------------------------------------------------------------------------------- /laravel/documenting/70-custom-endpoints.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/documenting/70-custom-endpoints.mdx -------------------------------------------------------------------------------- /laravel/documenting/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Documenting your API' 2 | position: 30 3 | collapsed: true -------------------------------------------------------------------------------- /laravel/reference/10-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/reference/10-config.md -------------------------------------------------------------------------------- /laravel/reference/20-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/reference/20-annotations.md -------------------------------------------------------------------------------- /laravel/reference/25-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/reference/25-html.md -------------------------------------------------------------------------------- /laravel/reference/30-plugin-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/reference/30-plugin-api.md -------------------------------------------------------------------------------- /laravel/reference/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Reference' 2 | position: 40 3 | collapsed: false -------------------------------------------------------------------------------- /laravel/tasks/10-generating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/tasks/10-generating.md -------------------------------------------------------------------------------- /laravel/tasks/20-modifying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/tasks/20-modifying.md -------------------------------------------------------------------------------- /laravel/tasks/40-customising-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/tasks/40-customising-features.md -------------------------------------------------------------------------------- /laravel/tasks/50-sorting-and-inheritance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel/tasks/50-sorting-and-inheritance.mdx -------------------------------------------------------------------------------- /laravel/tasks/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Common tasks' 2 | position: 30 3 | collapsed: true 4 | -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/0-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/0-intro.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/1-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/1-getting-started.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/100-migrating-apidoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/100-migrating-apidoc.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/120-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/120-contributing.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/20-migrating-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/20-migrating-v3.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/40-generating-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/40-generating-documentation.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/50-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/50-hooks.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/95-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/95-troubleshooting.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/98-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/98-architecture.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/advanced/10-example-requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/advanced/10-example-requests.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/advanced/40-writing-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/advanced/40-writing-plugins.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/advanced/50-theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/advanced/50-theming.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/advanced/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/advanced/_category_.yml -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/0-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/0-index.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/1-api-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/1-api-information.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/20-endpoint-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/20-endpoint-metadata.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/30-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/30-headers.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/40-url-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/40-url-parameters.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/50-query-body-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/50-query-body-parameters.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/60-responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/60-responses.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/70-custom-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/documenting/70-custom-endpoints.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/documenting/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Documenting your API' 2 | position: 30 3 | collapsed: true -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/reference/10-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/reference/10-config.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/reference/20-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/reference/20-annotations.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/reference/25-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/reference/25-html.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/reference/30-plugin-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-3.x/reference/30-plugin-api.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-3.x/reference/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Reference' 2 | position: 40 3 | collapsed: false -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/0-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/0-intro.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/1-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/1-getting-started.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/120-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/120-contributing.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/20-migrating-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/20-migrating-v4.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/50-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/50-hooks.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/95-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/95-troubleshooting.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/98-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/98-architecture.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/advanced/10-localization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/advanced/10-localization.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/advanced/20-example-requests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/advanced/20-example-requests.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/advanced/40-writing-plugins.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/advanced/40-writing-plugins.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/advanced/50-theming.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/advanced/50-theming.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/advanced/_category_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/advanced/_category_.yml -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/0-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/0-index.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/1-api-information.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/1-api-information.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/20-endpoint-metadata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/20-endpoint-metadata.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/30-headers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/30-headers.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/40-url-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/40-url-parameters.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/50-query-body-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/50-query-body-parameters.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/60-responses.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/60-responses.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/70-custom-endpoints.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/documenting/70-custom-endpoints.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/documenting/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Documenting your API' 2 | position: 30 3 | collapsed: true -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/reference/10-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/reference/10-config.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/reference/20-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/reference/20-annotations.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/reference/25-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/reference/25-html.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/reference/30-plugin-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/reference/30-plugin-api.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/reference/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Reference' 2 | position: 40 3 | collapsed: false -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/tasks/10-generating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/tasks/10-generating.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/tasks/20-modifying.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/tasks/20-modifying.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/tasks/40-customising-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/tasks/40-customising-features.md -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/tasks/50-sorting-and-inheritance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_docs/version-4.x/tasks/50-sorting-and-inheritance.mdx -------------------------------------------------------------------------------- /laravel_versioned_docs/version-4.x/tasks/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Common tasks' 2 | position: 30 3 | collapsed: true 4 | -------------------------------------------------------------------------------- /laravel_versioned_sidebars/version-3.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_sidebars/version-3.x-sidebars.json -------------------------------------------------------------------------------- /laravel_versioned_sidebars/version-4.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versioned_sidebars/version-4.x-sidebars.json -------------------------------------------------------------------------------- /laravel_versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/laravel_versions.json -------------------------------------------------------------------------------- /nodejs/0-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/0-intro.mdx -------------------------------------------------------------------------------- /nodejs/20-migrating-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/20-migrating-v3.md -------------------------------------------------------------------------------- /nodejs/40-generating-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/40-generating-documentation.md -------------------------------------------------------------------------------- /nodejs/95-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/95-troubleshooting.md -------------------------------------------------------------------------------- /nodejs/98-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/98-architecture.md -------------------------------------------------------------------------------- /nodejs/99-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/99-contributing.md -------------------------------------------------------------------------------- /nodejs/documenting/0-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/0-index.md -------------------------------------------------------------------------------- /nodejs/documenting/1-api-information.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/1-api-information.md -------------------------------------------------------------------------------- /nodejs/documenting/20-endpoint-metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/20-endpoint-metadata.md -------------------------------------------------------------------------------- /nodejs/documenting/30-headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/30-headers.md -------------------------------------------------------------------------------- /nodejs/documenting/40-url-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/40-url-parameters.md -------------------------------------------------------------------------------- /nodejs/documenting/50-query-body-parameters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/50-query-body-parameters.mdx -------------------------------------------------------------------------------- /nodejs/documenting/60-responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/60-responses.md -------------------------------------------------------------------------------- /nodejs/documenting/70-custom-endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/documenting/70-custom-endpoints.md -------------------------------------------------------------------------------- /nodejs/documenting/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Documenting your API' 2 | position: 30 3 | collapsed: true -------------------------------------------------------------------------------- /nodejs/getting-started/1-adonis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/getting-started/1-adonis.md -------------------------------------------------------------------------------- /nodejs/getting-started/2-express.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/getting-started/2-express.md -------------------------------------------------------------------------------- /nodejs/getting-started/3-restify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/getting-started/3-restify.md -------------------------------------------------------------------------------- /nodejs/getting-started/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Getting Started' 2 | position: 10 3 | collapsed: false -------------------------------------------------------------------------------- /nodejs/reference/10-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/reference/10-config.md -------------------------------------------------------------------------------- /nodejs/reference/20-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/reference/20-annotations.md -------------------------------------------------------------------------------- /nodejs/reference/25-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/nodejs/reference/25-html.md -------------------------------------------------------------------------------- /nodejs/reference/_category_.yml: -------------------------------------------------------------------------------- 1 | label: 'Reference' 2 | position: 40 3 | collapsed: false -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/package.json -------------------------------------------------------------------------------- /sidebarsLaravel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/sidebarsLaravel.js -------------------------------------------------------------------------------- /sidebarsNodejs.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | mainSidebar: [{type: 'autogenerated', dirName: '.'}], 4 | }; 5 | -------------------------------------------------------------------------------- /src/components/AdonisExpressRestifyTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/components/AdonisExpressRestifyTabs.js -------------------------------------------------------------------------------- /src/components/AttributesTagsTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/components/AttributesTagsTabs.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/components/HomepageFeatures.js -------------------------------------------------------------------------------- /src/components/HomepageFeatures.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/components/HomepageFeatures.module.css -------------------------------------------------------------------------------- /src/components/LaravelLumenTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/components/LaravelLumenTabs.js -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/src/pages/index.module.css -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/og-image-scribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/og-image-scribe.png -------------------------------------------------------------------------------- /static/img/screenshots/customization-example-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/customization-example-requests.png -------------------------------------------------------------------------------- /static/img/screenshots/docs-bare-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/docs-bare-example.png -------------------------------------------------------------------------------- /static/img/screenshots/docs-intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/docs-intro.png -------------------------------------------------------------------------------- /static/img/screenshots/docs-rich-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/docs-rich-1.png -------------------------------------------------------------------------------- /static/img/screenshots/docs-rich-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/docs-rich-2.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-auth.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-bodyparams-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-bodyparams-1.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-bodyparams-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-bodyparams-2.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-bodyparams-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-bodyparams-3.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-bodyparams-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-bodyparams-4.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-groups.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-queryparams-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-queryparams-1.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-queryparams-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-queryparams-2.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-queryparams-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-queryparams-3.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-queryparams-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-queryparams-4.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-responses-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-responses-1.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-responses-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-responses-2.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-responses-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-responses-3.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-responses-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-responses-4.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-title-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-title-description.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-urlparams-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-urlparams-1.png -------------------------------------------------------------------------------- /static/img/screenshots/endpoint-urlparams-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/endpoint-urlparams-2.png -------------------------------------------------------------------------------- /static/img/screenshots/html-aside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/html-aside.png -------------------------------------------------------------------------------- /static/img/screenshots/html-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/html-badges.png -------------------------------------------------------------------------------- /static/img/screenshots/html-badges2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/html-badges2.png -------------------------------------------------------------------------------- /static/img/screenshots/html-fancyheading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/html-fancyheading.png -------------------------------------------------------------------------------- /static/img/screenshots/object-fields.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/object-fields.jpg -------------------------------------------------------------------------------- /static/img/screenshots/plugins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/plugins.png -------------------------------------------------------------------------------- /static/img/screenshots/response-fields-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/response-fields-1.png -------------------------------------------------------------------------------- /static/img/screenshots/response-fields-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/response-fields-2.png -------------------------------------------------------------------------------- /static/img/screenshots/response-headers-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/response-headers-closed.png -------------------------------------------------------------------------------- /static/img/screenshots/response-headers-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/response-headers-open.png -------------------------------------------------------------------------------- /static/img/screenshots/tryitout-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/screenshots/tryitout-button.jpg -------------------------------------------------------------------------------- /static/img/undraw_building_websites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/undraw_building_websites.svg -------------------------------------------------------------------------------- /static/img/undraw_conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/undraw_conversation.svg -------------------------------------------------------------------------------- /static/img/undraw_working_remotely.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/static/img/undraw_working_remotely.svg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knuckleswtf/scribe-docs/HEAD/yarn.lock --------------------------------------------------------------------------------