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
416 changes: 416 additions & 0 deletions docs/02advanced/04recursion/index.mdx

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Python やアルゴリズムについて簡単にまとめていこうかなと

## 更新履歴

12/11 第八週の分を執筆 再帰

12/4 第七週の分を増訂 物体の運動のシミュレーション

11/28 第七週の分を執筆 物体の運動のシミュレーション
Expand Down
6 changes: 5 additions & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ const config = {
locales: ["ja"],
},

markdown: {
mermaid: true,
},

presets: [
[
"classic",
Expand Down Expand Up @@ -144,7 +148,7 @@ const config = {
darkTheme: darkCodeTheme,
},
}),
themes: ["@docusaurus/theme-live-codeblock"],
themes: ["@docusaurus/theme-live-codeblock", "@docusaurus/theme-mermaid"],
};

module.exports = config;
Loading