Skip to content

Commit b234eca

Browse files
committed
Deployed d442cc3 with MkDocs version: 1.6.1
1 parent 02fb332 commit b234eca

35 files changed

Lines changed: 30374 additions & 42287 deletions

File tree

404.html

Lines changed: 22 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@
88
<title>cell2cell</title>
99
<link rel="stylesheet" href="/css/theme.css" />
1010
<link rel="stylesheet" href="/css/theme_extra.css" />
11-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/styles/github.min.css" />
11+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github.min.css" />
1212
<link href="/assets/_mkdocstrings.css" rel="stylesheet" />
1313

14-
<script src="/js/jquery-3.6.0.min.js" defer></script>
1514
<!--[if lt IE 9]>
1615
<script src="/js/html5shiv.min.js"></script>
1716
<![endif]-->
18-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.5.0/highlight.min.js"></script>
19-
<script>hljs.initHighlightingOnLoad();</script>
17+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
18+
<script>hljs.highlightAll();</script>
2019
</head>
2120

2221
<body class="wy-body-for-nav" role="document">
@@ -28,7 +27,7 @@
2827
<a href="/." class="icon icon-home"> cell2cell
2928
</a><div role="search">
3029
<form id ="rtd-search-form" class="wy-form" action="//search.html" method="get">
31-
<input type="text" name="q" placeholder="Search docs" title="Type search term here" />
30+
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" title="Type search term here" />
3231
</form>
3332
</div>
3433
</div>
@@ -62,6 +61,15 @@
6261
<li class="toctree-l1"><a class="reference internal" href="/tutorials/GPU-Example/">Running Tensor-cell2cell on your own GPU or on Google Colab's GPU</a>
6362
</li>
6463
</ul>
64+
<p class="caption"><span class="caption-text">Tensor-cell2cell v2 Tutorials</span></p>
65+
<ul>
66+
<li class="toctree-l1"><a class="reference internal" href="/tutorials/Version2/Building-Tensors/">Building multimodal 4D communication tensors</a>
67+
</li>
68+
<li class="toctree-l1"><a class="reference internal" href="/tutorials/Version2/Tensor-cell2cell-CTCA/">Patterns of multimodal cell-cell communication with Tensor-cell2cell v2</a>
69+
</li>
70+
<li class="toctree-l1"><a class="reference internal" href="/tutorials/Version2/Tensor-cell2cell-CTCA-TFs/">Patterns of cell-cell communication and transcription factors</a>
71+
</li>
72+
</ul>
6573
</div>
6674
</div>
6775
</nav>
@@ -75,13 +83,12 @@
7583
<div class="wy-nav-content">
7684
<div class="rst-content"><div role="navigation" aria-label="breadcrumbs navigation">
7785
<ul class="wy-breadcrumbs">
78-
<li><a href="/." class="icon icon-home" alt="Docs"></a> &raquo;</li>
86+
<li><a href="/." class="icon icon-home" aria-label="Docs"></a></li>
7987
<li class="wy-breadcrumbs-aside">
8088
</li>
8189
</ul>
8290
<hr/>
8391
</div>
84-
8592
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
8693
<div class="section" itemprop="articleBody">
8794

@@ -121,14 +128,15 @@ <h1 id="404-page-not-found">404</h1>
121128

122129
</span>
123130
</div>
124-
<script>var base_url = '/';</script>
125-
<script src="/js/theme_extra.js" defer></script>
126-
<script src="/js/theme.js" defer></script>
127-
<script src="/search/main.js" defer></script>
128-
<script defer>
129-
window.onload = function () {
131+
<script src="/js/jquery-3.6.0.min.js"></script>
132+
<script>var base_url = "/";</script>
133+
<script src="/js/theme_extra.js"></script>
134+
<script src="/js/theme.js"></script>
135+
<script src="/search/main.js"></script>
136+
<script>
137+
jQuery(function () {
130138
SphinxRtdTheme.Navigation.enable(true);
131-
};
139+
});
132140
</script>
133141

134142
</body>

assets/_mkdocstrings.css

Lines changed: 34 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
word-break: normal !important;
55
}
66

7-
/* For pieces of Markdown rendered in table cells. */
8-
.doc-contents td p {
9-
margin-top: 0 !important;
10-
margin-bottom: 0 !important;
7+
/* No line break before first paragraph of descriptions. */
8+
.doc-md-description,
9+
.doc-md-description>p:first-child {
10+
display: inline;
1111
}
1212

1313
/* Avoid breaking code headings. */
@@ -19,10 +19,39 @@
1919
.doc-contents .field-name {
2020
min-width: 100px;
2121
}
22-
.doc-contents .field-name, .field-body {
22+
23+
/* Other curious-spacing fixes. */
24+
.doc-contents .field-name,
25+
.doc-contents .field-body {
2326
border: none !important;
2427
padding: 0 !important;
2528
}
29+
30+
.doc-contents p {
31+
margin: 1em 0 1em;
32+
}
33+
2634
.doc-contents .field-list {
2735
margin: 0 !important;
2836
}
37+
38+
.doc-contents pre {
39+
padding: 0 !important;
40+
}
41+
42+
.doc-contents .wy-table-responsive {
43+
margin-bottom: 0 !important;
44+
}
45+
46+
.doc-contents td.code {
47+
padding: 0 !important;
48+
}
49+
50+
.doc-contents td.linenos {
51+
padding: 0 8px !important;
52+
}
53+
54+
.doc-children,
55+
footer {
56+
margin-top: 20px;
57+
}

css/theme.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/theme_extra.css

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
* https://github.com/mkdocs/mkdocs/issues/233
2222
*/
2323
.rst-content pre code {
24-
white-space: pre;
25-
word-wrap: normal;
26-
display: block;
27-
padding: 12px;
28-
font-size: 12px;
24+
white-space: pre;
25+
word-wrap: normal;
26+
display: block;
27+
padding: 12px;
28+
font-size: 12px;
2929
}
3030

3131
/**
@@ -77,9 +77,9 @@ pre .cs, pre .c {
7777
* https://github.com/mkdocs/mkdocs/issues/319
7878
*/
7979
.rst-content .no-highlight {
80-
display: block;
81-
padding: 0.5em;
82-
color: #333;
80+
display: block;
81+
padding: 0.5em;
82+
color: #333;
8383
}
8484

8585

@@ -103,7 +103,7 @@ pre .cs, pre .c {
103103
form .search-query {
104104
width: 100%;
105105
border-radius: 50px;
106-
padding: 6px 12px; /* csslint allow: box-model */
106+
padding: 6px 12px;
107107
border-color: #D1D4D5;
108108
}
109109

@@ -113,11 +113,11 @@ form .search-query {
113113
* https://github.com/mkdocs/mkdocs/issues/656
114114
*/
115115
.rst-content .admonition code {
116-
color: #404040;
117-
border: 1px solid #c7c9cb;
118-
border: 1px solid rgba(0, 0, 0, 0.2);
119-
background: #f8fbfd;
120-
background: rgba(255, 255, 255, 0.7);
116+
color: #404040;
117+
border: 1px solid #c7c9cb;
118+
border: 1px solid rgba(0, 0, 0, 0.2);
119+
background: #f8fbfd;
120+
background: rgba(255, 255, 255, 0.7);
121121
}
122122

123123
/*
@@ -135,8 +135,8 @@ form .search-query {
135135
}
136136

137137
td, th {
138-
border: 1px solid #e1e4e5 !important; /* csslint allow: important */
139-
border-collapse: collapse;
138+
border: 1px solid #e1e4e5 !important;
139+
border-collapse: collapse;
140140
}
141141

142142
/*
@@ -155,6 +155,12 @@ td, th {
155155
padding-bottom: 40px;
156156
}
157157

158+
/* For section-index only */
159+
.wy-menu-vertical .current-section p {
160+
background-color: #e3e3e3;
161+
color: #404040;
162+
}
163+
158164
/*
159165
* The second step of above amendment: Here we make sure the items are aligned
160166
* correctly within the .rst-current-version container. Using flexbox, we

documentation/documentation.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)