Skip to content
Merged
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
4 changes: 3 additions & 1 deletion src/tutorial/tutorial.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export declare const data: Record<string, ExampleData>
export default {
watch: './src/**',
async load() {
const md = await createMarkdownRenderer(process.cwd(), undefined, '/')
const md = await createMarkdownRenderer(process.cwd(), {
theme: 'github-dark',
}, '/')
const files = readExamples(path.resolve(__dirname, './src'))
for (const step in files) {
const stepFiles = files[step]
Expand Down