-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (100 loc) · 4.71 KB
/
index.html
File metadata and controls
102 lines (100 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AnyCable Docs</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<meta itemprop="name" content="AnyCable Docs" />
<meta property="og:title" content="AnyCable Docs" />
<meta name="description" content="Polyglot replacement for ActionCable-compatible servers" />
<meta itemprop="description" content="Polyglot replacement for ActionCable-compatible servers" />
<meta property="og:description" content="Polyglot replacement for ActionCable-compatible servers" />
<meta itemprop="image" content="https://docs.anycable.io/assets/images/share.png" />
<meta property="og:image" content="https://docs.anycable.io/assets/images/share.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@any_cable" />
<meta name="twitter:creator" content="@any_cable" />
<meta property="og:site_name" content="AnyCable Docs" />
<meta name="keywords" content="rails, actioncable, websocket, anycable, grpc, ruby, erlang, golang" />
<meta name="theme-color" content="#000000" />
<link rel="stylesheet" href="../assets/vue.min.css">
<link rel="stylesheet" href="../assets/styles.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex@latest/dist/katex.min.css"/>
</head>
<body>
<div id="app"></div>
<script src="../assets/docsify-namespaces.js"></script>
<script>
if(rhash = sessionStorage.getItem("__redirect_hash__")) {
window.location.hash = rhash;
sessionStorage.removeItem("__redirect_hash__");
}
window.$docsify = {
alias: {
'/v06/.*_sidebar.md': 'https://raw.githubusercontent.com/anycable/docs.anycable.io/0-6-stable/docs/_sidebar.md',
'/v1/.*_sidebar.md': 'https://raw.githubusercontent.com/anycable/docs.anycable.io/1-0-stable/docs/_sidebar.md',
'/.*/_sidebar.md': '/_sidebar.md',
'/anycable-go/(.*)': 'https://raw.githubusercontent.com/anycable/anycable-go/master/docs/$1',
'/ruby/(.*)': 'https://raw.githubusercontent.com/anycable/anycable/master/docs/$1',
'/rails/(.*)': 'https://raw.githubusercontent.com/anycable/anycable-rails/master/docs/$1',
'/v06/(.*)': 'https://raw.githubusercontent.com/anycable/docs.anycable.io/0-6-stable/docs/$1',
'/v1/anycable-go/(.*)': 'https://raw.githubusercontent.com/anycable/anycable-go/1-0-stable/docs/$1',
'/v1/ruby/(.*)': 'https://raw.githubusercontent.com/anycable/anycable/1-0-stable/docs/$1',
'/v1/rails/(.*)': 'https://raw.githubusercontent.com/anycable/anycable-rails/1-0-stable/docs/$1',
'/v1/(.*)': 'https://raw.githubusercontent.com/anycable/docs.anycable.io/1-0-stable/docs/$1',
},
name: '<a id="logo-link" class="app-name-link" data-nosearch href="/"><div class="sidebar-logo">' +
'<img src="../assets/images/logo.svg" height="64px" class="is-light">' +
'<img src="../assets/images/logo_bw.svg" height="64px" class="is-dark">' +
'<span class="sidebar-logo-title">AnyCable</span>' +
'</div></a>' +
'<select id="version-selector" name="version" class="sidebar-version-select">' +
'<option value="">v1.0-edge</value>' +
'<option value="v1">v1.0</value>' +
'<option value="v06">v0.6</value>' +
'</select>',
repo: 'https://github.com/anycable',
loadSidebar: true,
relativePath: true,
nameLink: false,
subMaxLevel: 2,
ga: 'UA-88982723-3',
auto2top: true,
search: {
paths: 'auto',
namespace: 'docs-anycable',
hideOtherSidebarContent: true,
depth: 3,
pathNamespaces: ['/v06', '/v1']
},
plugins:[
NamespacesPlugin.create({
namespaces: [
{
id: "version",
values: ["v1", "v06"],
default: "v1",
optional: true,
selector: "#version-selector"
}
]
}),
function(hook, vm) {
hook.doneEach(function(){
var appNameLink = Docsify.dom.find("#logo-link");
if (!appNameLink) return;
appNameLink.href = vm.config.currentNamespace;
});
}
]
}
</script>
<script src="../assets/docsify.min.js"></script>
<script src="../assets/docsify-search.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-katex@latest/dist/docsify-katex.js"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="../assets/prism-ruby.min.js"></script>
</body>
</html>