This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Instrument to detect invalid anchor links. | |
| * | |
| * Motivation: | |
| * - Docs has anchor links that assume that they are led to the header, but they differ to generated headers' links; | |
| * - Due to the changes, some links may become invalid, and the script will help you track this; | |
| * - VuePress replace some characters on build stage, for example `й` to `и`. Issue: https://github.com/vuejs/vuepress/blob/9fb4bb00925d9409e6732118e996411c6a82c85d/packages/%40vuepress/shared-utils/src/slugify.ts#L9 | |
| */ | |
| import fs from 'fs' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [package] | |
| name = "utoipa_swagger_incorrect_path_example" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| axum = "0.8" | |
| axum-extra = "0.10" | |
| utoipa = { version = "5.3", features = ["axum_extras"] } | |
| utoipa-axum = "0.1" |