1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,10 +122,10 @@ fun generatePypiProjectHomePage() {
122
122
// relative path of the images in the how-to-use-python-client.md file is incorrect. We need
123
123
// to fix the relative path of the images/markdown to the absolute path.
124
124
val content = outputFile.readText()
125
- val docsUrl = "https : // datastrato.ai /docs/latest"
125
+ val docsUrl = "https : // gravitino.apache.org /docs/latest"
126
126
127
127
// Use regular expression to match the `[](./a/b/c.md?language=python)` or `[](./a/b/c.md#arg1)` link in the content
128
- // Convert `[](./a/b/c.md?language=python)` to `[](https://datastrato.ai /docs/latest/a/b/c/language=python)`
128
+ // Convert `[](./a/b/c.md?language=python)` to `[](https://gravitino.apache.org /docs/latest/a/b/c/language=python)`
129
129
val patternDocs = Regex ("""(? <!!)\[([^\]]+)]\(\.\/([^)]+)\.md([? #][^)]+)? \)""")
130
130
val contentUpdateDocs = patternDocs.replace(content) { matchResult ->
131
131
val text = matchResult.groupValues[1 ]
0 commit comments