Skip to content

Commit

Permalink
chore: commit code
Browse files Browse the repository at this point in the history
  • Loading branch information
baranwang committed Oct 4, 2024
1 parent 7d6f8de commit 0490867
Show file tree
Hide file tree
Showing 5 changed files with 83 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/module-install/module-install.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const TabContent: React.FC<{ type: SupportedApp; url: string }> = ({ type, url }
const urlToOpen = urlTemplate ? urlTemplate(url) : url;
return (
<>
{url}
<a href={url}>{url.split('/').pop()}</a>
<h3>一键安装</h3>
{urlToOpen && <a href={urlToOpen}>一键安装</a>}
</>
Expand Down
2 changes: 2 additions & 0 deletions docs/hello.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
## Start

Write something to build your own docs! 🎁

@VirgilClyne
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/node": "^16",
"@types/react": "^18.3.11"
"@types/react": "^18.3.11",
"remark-github": "^12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/NSRingo/NSRingo.github.io.git"
}
}
70 changes: 70 additions & 0 deletions pnpm-lock.yaml

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

4 changes: 4 additions & 0 deletions rspress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@ export default defineConfig({
},
],
},
markdown: {
mdxRs: false,
remarkPlugins: [[require('remark-github')]],
},
});

0 comments on commit 0490867

Please sign in to comment.