Skip to content

Commit a3cf9e3

Browse files
committed
Add VerticalStepper component
1 parent 4f2b977 commit a3cf9e3

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docusaurus.config.jp.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import math from "remark-math";
33
import katex from "rehype-katex";
44
import chHeader from "./plugins/header.js";
55
import fixLinks from "./src/hooks/fixLinks.js";
6+
const remarkCustomBlocks = require('./plugins/remark-custom-blocks');
67

78
// Helper function to skip over index.md files.
89
function skipIndex(items) {
@@ -128,7 +129,7 @@ const config = {
128129
showLastUpdateTime: false,
129130
sidebarCollapsed: true,
130131
routeBasePath: "/",
131-
remarkPlugins: [math],
132+
remarkPlugins: [math, remarkCustomBlocks],
132133
beforeDefaultRemarkPlugins: [fixLinks],
133134
rehypePlugins: [katex],
134135
},

docusaurus.config.zh.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import math from "remark-math";
33
import katex from "rehype-katex";
44
import chHeader from "./plugins/header.js";
55
import fixLinks from "./src/hooks/fixLinks.js";
6+
const remarkCustomBlocks = require('./plugins/remark-custom-blocks');
67

78
// Helper function to skip over index.md files.
89
function skipIndex(items) {
@@ -128,7 +129,7 @@ const config = {
128129
showLastUpdateTime: false,
129130
sidebarCollapsed: true,
130131
routeBasePath: "/",
131-
remarkPlugins: [math],
132+
remarkPlugins: [math, remarkCustomBlocks],
132133
beforeDefaultRemarkPlugins: [fixLinks],
133134
rehypePlugins: [katex],
134135
},

0 commit comments

Comments
 (0)