We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a4ab53 commit de20a23Copy full SHA for de20a23
packages/gatsby-theme-iterative/plugins/gatsby-remark-dvc-linker/index.test.js
@@ -27,7 +27,7 @@ describe('gatsby-remark-dvc-linker', async () => {
27
28
live = {
29
inlineCode: '`Live.log()`',
30
- url: '[`Live.log()`](/doc/dvclive/api-reference/live/log)'
+ url: '[`Live.log()`](/doc/dvclive/live/log)'
31
}
32
33
it('composes apiLinker and commandLinker', () => {
packages/gatsby-theme-iterative/plugins/gatsby-remark-dvc-linker/liveLinker.js
@@ -5,7 +5,7 @@ const { getItemByPath } = require('../../src/utils/shared/sidebar')
5
6
const LIVE_API_REGEXP = /Live.([a-z-._]*\(\)$)?/
7
const METHOD_REGEXP = /^[a-z-._]*\(\)$/
8
-const API_ROOT = '/doc/dvclive/api-reference/live/'
+const API_ROOT = '/doc/dvclive/live/'
9
10
module.exports = astNode => {
11
const node = astNode[0]
0 commit comments