Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/upstream'
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafa-nematpour committed Jun 6, 2024
2 parents 49b10a4 + 40e2617 commit c4bb5b5
Show file tree
Hide file tree
Showing 7 changed files with 172 additions and 97 deletions.
1 change: 0 additions & 1 deletion .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,6 @@ export default defineConfigWithTheme<ThemeConfig>({
markdown: {
theme: 'github-dark',
config(md) {
// @ts-expect-error - broken type output in vitepress
md.use(headerPlugin)
// .use(textAdPlugin)
}
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"nuxt.isNuxtApp": false,
"cSpell.words": [
"vitepress",
"آبجکت",
"آبجکتی",
"آپشن",
Expand Down Expand Up @@ -56,4 +57,4 @@
"ماژولار",
"وبسایت"
]
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
"type": "vue-tsc --noEmit"
},
"dependencies": {
"@vue/repl": "^4.1.2",
"@vue/repl": "^4.2.1",
"@vue/theme": "^2.2.12",
"dynamics.js": "^1.1.5",
"gsap": "^3.12.5",
"vitepress": "^1.2.2",
"vitepress": "^1.2.3",
"vue": "^3.4.27"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.2",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.12.12",
"@types/node": "^20.14.1",
"terser": "^5.31.0",
"typescript": "^5.4.5",
"vue-tsc": "^2.0.19"
},
"packageManager": "[email protected].2"
"packageManager": "[email protected].4"
}
105 changes: 65 additions & 40 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/ecosystem/themes/ThemeListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const description = computed(() => {
// replace markdown link to html tag.
// [name](https://...) -> <a href="https://...">name</a>
return props.provider.description.replace(
/\[([^\]]+)\]\(([^\)]+)\)/,
/\[([^\]]+)\]\(([^\)]+)\)/g,
'<a href="$2" class="link" target="_blank" rel="noopener">$1</a>'
)
})
Expand Down
Loading

0 comments on commit c4bb5b5

Please sign in to comment.