Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
librarian-pku committed Apr 10, 2019
1 parent 27d9610 commit 0bb46ae
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function solve(e, depth) {
}
if (e.type == "directory") {
for (let i = 0; i < depth; ++i) s += "#";
res.push(`${s} ${e.name}`);
res.push(`${s} [${e.name}](${prefix + encodeURIComponent(e.path)})`);
} else if (e.type == "file") {
res.push(`[${e.name}](${prefix + encodeURIComponent(e.path)})`);
}
Expand Down
Empty file added 公选课/.gitkeep
Empty file.
Binary file removed 公选课/Python艺术编程/pythonart2018-00.pdf
Binary file not shown.
Binary file removed 公选课/Python艺术编程/pythonart2018-01.pdf
Binary file not shown.
Binary file removed 公选课/Python艺术编程/pythonart2018-02.pdf
Binary file not shown.
Binary file removed 公选课/Python艺术编程/pythonart2018-03.pdf
Binary file not shown.
Binary file removed 公选课/Python艺术编程/pythonart2018-04.pdf
Binary file not shown.
Binary file removed 公选课/Python艺术编程/pythonart2018-05.pdf
Binary file not shown.

0 comments on commit 0bb46ae

Please sign in to comment.