@lukoweb/apitogo 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/cli.js
CHANGED
|
@@ -208,7 +208,7 @@ var init_shiki = __esm({
|
|
|
208
208
|
warnedLanguages.add(lang);
|
|
209
209
|
console.warn(
|
|
210
210
|
`Language "${lang}" is not loaded for syntax highlighting. Add it to \`syntaxHighlighting.languages\` in your config. Falling back to plain text.
|
|
211
|
-
See https://
|
|
211
|
+
See https://docs.apitogo.com/docs/markdown/code-blocks#configuration`
|
|
212
212
|
);
|
|
213
213
|
};
|
|
214
214
|
parseMetaString = (str) => {
|
|
@@ -3822,7 +3822,7 @@ import {
|
|
|
3822
3822
|
// package.json
|
|
3823
3823
|
var package_default = {
|
|
3824
3824
|
name: "@lukoweb/apitogo",
|
|
3825
|
-
version: "0.1.
|
|
3825
|
+
version: "0.1.18",
|
|
3826
3826
|
type: "module",
|
|
3827
3827
|
sideEffects: [
|
|
3828
3828
|
"**/*.css",
|
|
@@ -5911,7 +5911,7 @@ var NavigationResolver = class {
|
|
|
5911
5911
|
);
|
|
5912
5912
|
if (!foundMatches) {
|
|
5913
5913
|
throw new Error(
|
|
5914
|
-
`File not found for document '${filePath}'. Navigation items of type 'doc' must point to a valid .md or .mdx file. Do you mean 'link' or 'custom-page'? Check navigation configuration documentation for more information: https://
|
|
5914
|
+
`File not found for document '${filePath}'. Navigation items of type 'doc' must point to a valid .md or .mdx file. Do you mean 'link' or 'custom-page'? Check navigation configuration documentation for more information: https://docs.apitogo.com/docs/configuration/navigation`
|
|
5915
5915
|
);
|
|
5916
5916
|
}
|
|
5917
5917
|
const { data, content } = await readFrontmatter(foundMatches);
|
package/package.json
CHANGED
|
@@ -221,7 +221,7 @@ export class NavigationResolver {
|
|
|
221
221
|
|
|
222
222
|
if (!foundMatches) {
|
|
223
223
|
throw new Error(
|
|
224
|
-
`File not found for document '${filePath}'. Navigation items of type 'doc' must point to a valid .md or .mdx file. Do you mean 'link' or 'custom-page'? Check navigation configuration documentation for more information: https://
|
|
224
|
+
`File not found for document '${filePath}'. Navigation items of type 'doc' must point to a valid .md or .mdx file. Do you mean 'link' or 'custom-page'? Check navigation configuration documentation for more information: https://docs.apitogo.com/docs/configuration/navigation`,
|
|
225
225
|
);
|
|
226
226
|
}
|
|
227
227
|
|
package/src/lib/shiki.ts
CHANGED
|
@@ -57,7 +57,7 @@ const warnUnloadedLanguage = (lang: string, highlighter: HighlighterCore) => {
|
|
|
57
57
|
console.warn(
|
|
58
58
|
`Language "${lang}" is not loaded for syntax highlighting. ` +
|
|
59
59
|
`Add it to \`syntaxHighlighting.languages\` in your config. Falling back to plain text.\n` +
|
|
60
|
-
`See https://
|
|
60
|
+
`See https://docs.apitogo.com/docs/markdown/code-blocks#configuration`,
|
|
61
61
|
);
|
|
62
62
|
};
|
|
63
63
|
|