Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const config = {
title: "アルゴリズム入門",
// tagline: '',
url: "https://chvmvd.github.io",
baseUrl: "/algorithm/",
url: "https://sikepuri-algorithm.github.io",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
// favicon: 'img/favicon.ico',

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "chvmvd", // Usually your GitHub org/user name.
organizationName: "sikepuri-algorithm", // Usually your GitHub org/user name.
projectName: "sikepuri-of-algorithm", // Usually your repo name.

// Even if you don't use internalization, you can use this field to set useful
Expand All @@ -40,7 +40,8 @@ const config = {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/chvmvd/sikepuri-of-algorithm/tree/main",
editUrl:
"https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io/tree/main",
remarkPlugins: [math],
rehypePlugins: [katex],
},
Expand Down Expand Up @@ -86,7 +87,7 @@ const config = {
},
// {to: '/blog', label: 'Blog', position: 'left'},
{
href: "https://github.com/chvmvd/sikepuri-of-algorithm",
href: "https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io",
label: "GitHub",
position: "right",
},
Expand Down Expand Up @@ -121,7 +122,7 @@ const config = {
// },
{
label: "GitHub",
href: "https://github.com/chvmvd/sikepuri-of-algorithm",
href: "https://github.com/sikepuri-algorithm/sikepuri-algorithm.github.io",
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/components/OpenInColab/OpenInColab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function OpenInColab({ path }) {
<>
<div className={styles.root}>
<a
href={`https://colab.research.google.com/github/chvmvd/sikepuri-of-algorithm/blob/main${pathname}${path}`}
href={`https://colab.research.google.com/github/sikepuri-algorithm/sikepuri-algorithm.github.io/blob/main${pathname}${path}`}
target="_blank"
rel="noreferrer"
>
Expand Down