Created
May 13, 2022 04:13
-
-
Save colinhacks/a15189e859aa7c08d4424ef726b7a6b6 to your computer and use it in GitHub Desktop.
Minimal docsify index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>user/repo</title> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta | |
name="description" | |
content="This is a description of user/repo" | |
/> | |
<meta | |
name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" | |
/> | |
<link | |
rel="stylesheet" | |
href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css" | |
/> | |
</head> | |
<body> | |
<nav | |
style=" | |
display: flex; | |
flex-direction: row; | |
align-items: center; | |
justify-content: space-between; | |
" | |
></nav> | |
<div id="app"></div> | |
<script> | |
window.$docsify = { | |
subMaxLevel: 1, | |
maxLevel: 3, | |
auto2top: true, | |
repo: "user/repo", | |
routerMode: "history", | |
}; | |
</script> | |
<script src="//cdn.jsdelivr.net/npm/[email protected]/lib/docsify.min.js"></script> | |
<script src="//cdn.jsdelivr.net/npm/[email protected]/prism.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment