Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 67897f6

Browse files
Update index.html
1 parent 62ae6eb commit 67897f6

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

docs/index.html

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,36 @@
2020
}
2121

2222
</style>
23+
24+
<!-- Plugins needed before app definition. -->
25+
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
26+
2327
</head>
2428

2529
<body>
2630
<div id="app"></div>
31+
2732
<script>
33+
var repo = 'https://github.com/MichaelCurrin/python-twitter-guide';
34+
2835
window.$docsify = {
2936
name: 'DocsifyJS Tutorial',
30-
repo: 'https://github.com/michaelcurrin/docsify-js-tutorial',
37+
repo: repo,
3138
auto2top: true, // This helps a lot when switching between sections by menu.
3239
coverpage: true,
33-
loadSidebar: false
34-
}
40+
loadSidebar: false,
41+
42+
plugins: [
43+
EditOnGithubPlugin.create(
44+
repo + '/blob/master/docs/'
45+
)
46+
],
47+
};
3548

3649
</script>
3750

3851
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
52+
3953
</body>
4054

4155
</html>

0 commit comments

Comments
 (0)