Skip to content

Commit ecce612

Browse files
committed
rename text.md to README.md
1 parent 287e4e2 commit ecce612

File tree

93 files changed

+1
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1
-3
lines changed

src/lib/client/adapters/filesystem/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ export async function create(stubs) {
2222
}
2323
});
2424

25-
console.log('?????');
26-
2725
return {
2826
base: `http://localhost:${port}`,
2927

src/lib/server/content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function get_index() {
4242
const dir = `content/tutorial/${part}/${chapter}/${section}`;
4343
if (!fs.statSync(dir).isDirectory()) continue;
4444

45-
const text = fs.readFileSync(`${dir}/text.md`, 'utf-8');
45+
const text = fs.readFileSync(`${dir}/README.md`, 'utf-8');
4646
const { frontmatter, markdown } = extract_frontmatter(text, dir);
4747

4848
const slug = section.slice(3);

0 commit comments

Comments
 (0)