Skip to content

Commit e9aa60e

Browse files
committed
Initial commit
0 parents  commit e9aa60e

10 files changed

Lines changed: 61 additions & 0 deletions

File tree

offline/docsify.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

offline/vue.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/docs/.nojekyll

Whitespace-only changes.

test/docs/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Headline
2+
3+
> An awesome project.

test/docs/_sidebar.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- docs/_sidebar.md -->
2+
3+
* [Home](/)
4+
* [hello](hello.md)
5+
6+
---
7+
8+
* [/test 한글 漢字](test/README.md)
9+
* [/test/more](test/more.md)
10+
11+

test/docs/hello.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Hello
2+
3+
- Hello World!

test/docs/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Document</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="Description">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
10+
</head>
11+
<body>
12+
<div id="app"></div>
13+
<script>
14+
window.$docsify = {
15+
name: '',
16+
repo: '',
17+
loadSidebar: true
18+
}
19+
</script>
20+
<!-- Docsify v4 -->
21+
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
22+
</body>
23+
</html>

test/docs/test/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# `test` directory
2+
3+
- test

test/docs/test/more.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# More
2+
3+
more ...

test/start.cmd

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@rem
2+
@rem init : docsify init ./docs
3+
@rem start : docsify serve docs
4+
@rem
5+
6+
docsify serve docs
7+
8+
9+
@rem 파이썬으로 구동하는 방법 (node 필요 없음)
10+
@rem cd test
11+
@rem python -m http.server 4000 (python 3 인 경우)
12+
13+

0 commit comments

Comments
 (0)