You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can leave the `.nojekyll` untouched as it just helps Github Pages include the underscore files in builds.
72
+
73
+
### Configure README.md
74
+
75
+
The `docs/README.md` file is your homepage. It might have a structure like this:
76
+
77
+
```
78
+
# Project name
79
+
> Project description
80
+
81
+
## Sample
82
+
83
+
...
84
+
85
+
## Installation
86
+
87
+
...
88
+
89
+
## Usage
90
+
91
+
...
92
+
```
93
+
94
+
You can have no links and very short _README.md_ file and it will work fine. With _Docsify_. we rely on the sidebar menu to provide links to your files in `docs`.
95
+
96
+
But you can optionally put links in that file to your other docs files, if that makes sense in your _README.md_. (They must be **relative** to docs directory such as `file.md`, **not** absolute URLs such as with `/docs/file.md`)
97
+
98
+
You may want to copy or move content from your root _README.md_ to the _docs/REAME.md_ file.
0 commit comments