mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-24 13:23:50 +00:00
62 lines
2.3 KiB
HTML
62 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Document</title>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta name="description" content="Description">
|
|
<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="//unpkg.com/docsify/lib/themes/vue.css">
|
|
<link rel="stylesheet" href="static/style.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Mono&display=swap" rel="stylesheet">
|
|
<link rel="shortcut icon" href="static/favicon.ico" />
|
|
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
|
|
<script>
|
|
window.$docsify = {
|
|
name: 'Fiber v0.5.5',
|
|
repo: 'fenny/fiber',
|
|
loadSidebar: "sidebar.md",
|
|
homepage: 'getting_started.md',
|
|
subMaxLevel: 4,
|
|
auto2top: true
|
|
}
|
|
</script>
|
|
<script type="text/javascript">
|
|
Prism.languages.curl = Prism.languages.extend('clike', {
|
|
'curl': /\bcurl\b/,
|
|
'url': /https?:[a-zA-Z0-9:.?=\/\-_{}]*/,
|
|
'parameter': {
|
|
pattern: /[A-Za-z0-9\[\]-_]+ *(?=[=])/,
|
|
},
|
|
'value': [{
|
|
pattern: /([=])([A-Za-z0-9-_.]*)/,
|
|
lookbehind: true,
|
|
}, {
|
|
pattern: /(["'])(\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,
|
|
}, {
|
|
pattern: /(\-u )([A-Za-z0-9-_.{}]*)/,
|
|
lookbehind: true,
|
|
}],
|
|
'option': / *-[a-zA-Z]*\b/,
|
|
});
|
|
Prism.languages.go = Prism.languages.extend('clike', {
|
|
'keyword': /\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(?:to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,
|
|
'builtin': /\b(?:bool|byte|complex(?:64|128)|error|float(?:32|64)|rune|string|u?int(?:8|16|32|64)?|uintptr|append|cap|close|complex|copy|delete|imag|len|make|new|panic|print(?:ln)?|real|recover)\b/,
|
|
'boolean': /\b(?:_|iota|nil|true|false)\b/,
|
|
'operator': /[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,
|
|
'number': /(?:\b0x[a-f\d]+|(?:\b\d+\.?\d*|\B\.\d+)(?:e[-+]?\d+)?)i?/i,
|
|
'function': /\w+(?=\()/,
|
|
'string': {
|
|
pattern: /(["'`])(\\[\s\S]|(?!\1)[^\\])*\1/,
|
|
greedy: true
|
|
},
|
|
'property': /\b(\w*Ctx\w*)\b/,
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|