Skip to content

Commit aa3b151

Browse files
committed
fix: syntax highlight error in main page
1 parent a150800 commit aa3b151

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ So flybook will keep in simplest way to generate static web site for writing the
1818
For example, Flybook documentation structure look like below
1919
```
2020
$ ls /path/to/project/docs
21-
docs
22-
|____advanced
23-
| \____theme.md
24-
|____basic
25-
| \____getting-started.md
26-
| \____install.md
27-
|____examples
28-
| \____syntax-highlight.md
29-
|____readme.md
21+
docs
22+
|____advanced
23+
| \____theme.md
24+
|____basic
25+
| \____getting-started.md
26+
| \____install.md
27+
|____examples
28+
| \____syntax-highlight.md
29+
|____readme.md
3030
```
3131

3232
**globally**

docs/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![](./docs/media/logo-250x250.png)](https://rhiokim.github.io/flybook)
1+
[![](./media/logo-250x250.png)](https://rhiokim.github.io/flybook)
22

33
Just write markdown, Flybook will create your book.
44

@@ -11,7 +11,7 @@ Already we know that we can have a number of document tools to publish markdown
1111
So flybook will keep in simplest way to generate static web site for writing the manual of project
1212

1313
## How flybook works
14-
![](./docs/media/flybook-flow-detail.png)
14+
![](./media/flybook-flow-detail.png)
1515

1616
## How to use flybook
1717

libs/_document.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export default ({
4646
}
4747
</style>
4848
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
49-
<script src="${root}/static/main.js"></script>
49+
<script src="${root}static/main.js"></script>
5050
<body>
5151
<div id="root">${body}</div>
5252
</body>

0 commit comments

Comments
 (0)