Skip to content

Commit e4d2d93

Browse files
Merge pull request #3 from nelson-lang/prepare-release
prepare v1.15
2 parents fa9da6b + 99200b5 commit e4d2d93

File tree

4,375 files changed

+4226650
-829334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,375 files changed

+4226650
-829334
lines changed

.github/workflows/generate_pdf.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: CI
22

3-
on:
4-
push:
5-
branches: [master]
6-
pull_request:
7-
branches: [master]
8-
9-
workflow_dispatch:
3+
on: [push]
104

115
jobs:
126
build:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22.12.0
1+
22.21.0

docs/index.html

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,23 @@
11
<h1>📚 Nelson Documentation</h1>
2-
32
<p>Welcome to the Nelson online documentation! Here you will find all the information you need to use and contribute to Nelson.</p>
4-
53
<h2>🌐 Useful Links</h2>
6-
74
<ul>
85
<li><a href="https://nelson-lang.github.io/nelson-website/">🌍 Nelson Website</a></li>
96
<li><a href="https://github.com/nelson-lang/nelson/">💻 Contribute on GitHub</a></li>
107
</ul>
11-
128
<h2>📅 Latest Online Help Version</h2>
13-
149
<ul>
15-
<li>Current version: <a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.14.0/index.html">v1.14.0</a></li>
10+
<li>Current version: <a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.15.0/index.html">v1.15.0</a></li>
1611
</ul>
17-
1812
<h2>⏳ Previous Versions</h2>
19-
2013
<ul>
14+
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.15.0/index.html">v1.15.0</a></li>
2115
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.14.0/index.html">v1.14.0</a></li>
2216
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.13.0/index.html">v1.13.0</a></li>
2317
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.12.0/index.html">v1.12.0</a></li>
2418
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.11.0/index.html">v1.11.0</a></li>
2519
<li><a href="https://nelson-lang.github.io/nelson-gitbook/releases/en_US/v1.10.0/index.html">v1.10.0</a></li>
2620
</ul>
27-
2821
<h2>🛠️ How to Contribute</h2>
29-
3022
<p>We appreciate all contributions! To get started, check out our <a href="https://github.com/nelson-lang/nelson/blob/master/CONTRIBUTING.md">contribution guide</a>.</p>
31-
3223
<p>Thank you for your support and happy reading! 🚀</p>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.
Lines changed: 201 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,201 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="light sidebar-visible" dir="ltr">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title>Page not found - Nelson</title>
7+
<base href="https://nelson-lang.github.io/nelson-gitbook/">
8+
9+
10+
<!-- Custom HTML head -->
11+
12+
<meta name="description" content="">
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
<meta name="theme-color" content="#ffffff">
15+
16+
<link rel="icon" href="favicon.svg">
17+
<link rel="shortcut icon" href="favicon.png">
18+
<link rel="stylesheet" href="css/variables.css">
19+
<link rel="stylesheet" href="css/general.css">
20+
<link rel="stylesheet" href="css/chrome.css">
21+
<link rel="stylesheet" href="css/print.css" media="print">
22+
23+
<!-- Fonts -->
24+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
25+
<link rel="stylesheet" href="fonts/fonts.css">
26+
27+
<!-- Highlight.js Stylesheets -->
28+
<link rel="stylesheet" href="highlight.css">
29+
<link rel="stylesheet" href="tomorrow-night.css">
30+
<link rel="stylesheet" href="ayu-highlight.css">
31+
32+
<!-- Custom theme stylesheets -->
33+
34+
35+
<!-- Provide site root to javascript -->
36+
<script>
37+
var path_to_root = "";
38+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "light";
39+
</script>
40+
<!-- Start loading toc.js asap -->
41+
<script src="toc.js"></script>
42+
</head>
43+
<body>
44+
<div id="body-container">
45+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
46+
<script>
47+
try {
48+
var theme = localStorage.getItem('mdbook-theme');
49+
var sidebar = localStorage.getItem('mdbook-sidebar');
50+
51+
if (theme.startsWith('"') && theme.endsWith('"')) {
52+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
53+
}
54+
55+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
56+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
57+
}
58+
} catch (e) { }
59+
</script>
60+
61+
<!-- Set the theme before any content is loaded, prevents flash -->
62+
<script>
63+
var theme;
64+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
65+
if (theme === null || theme === undefined) { theme = default_theme; }
66+
const html = document.documentElement;
67+
html.classList.remove('light')
68+
html.classList.add(theme);
69+
html.classList.add("js");
70+
</script>
71+
72+
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
73+
74+
<!-- Hide / unhide sidebar before it is displayed -->
75+
<script>
76+
var sidebar = null;
77+
var sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
78+
if (document.body.clientWidth >= 1080) {
79+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
80+
sidebar = sidebar || 'visible';
81+
} else {
82+
sidebar = 'hidden';
83+
}
84+
sidebar_toggle.checked = sidebar === 'visible';
85+
html.classList.remove('sidebar-visible');
86+
html.classList.add("sidebar-" + sidebar);
87+
</script>
88+
89+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
90+
<!-- populated by js -->
91+
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
92+
<noscript>
93+
<iframe class="sidebar-iframe-outer" src="toc.html"></iframe>
94+
</noscript>
95+
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
96+
<div class="sidebar-resize-indicator"></div>
97+
</div>
98+
</nav>
99+
100+
<div id="page-wrapper" class="page-wrapper">
101+
102+
<div class="page">
103+
<div id="menu-bar-hover-placeholder"></div>
104+
<div id="menu-bar" class="menu-bar sticky">
105+
<div class="left-buttons">
106+
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
107+
<i class="fa fa-bars"></i>
108+
</label>
109+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
110+
<i class="fa fa-paint-brush"></i>
111+
</button>
112+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
113+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
114+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
115+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
116+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
117+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
118+
</ul>
119+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
120+
<i class="fa fa-search"></i>
121+
</button>
122+
</div>
123+
124+
<h1 class="menu-title">Nelson</h1>
125+
126+
<div class="right-buttons">
127+
<a href="print.html" title="Print this book" aria-label="Print this book">
128+
<i id="print-button" class="fa fa-print"></i>
129+
</a>
130+
<a href="https://nelson-lang.github.io/nelson-gitbook/" title="Git repository" aria-label="Git repository">
131+
<i id="git-repository-button" class="fa fa-github"></i>
132+
</a>
133+
134+
</div>
135+
</div>
136+
137+
<div id="search-wrapper" class="hidden">
138+
<form id="searchbar-outer" class="searchbar-outer">
139+
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
140+
</form>
141+
<div id="searchresults-outer" class="searchresults-outer hidden">
142+
<div id="searchresults-header" class="searchresults-header"></div>
143+
<ul id="searchresults">
144+
</ul>
145+
</div>
146+
</div>
147+
148+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
149+
<script>
150+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
151+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
152+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
153+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
154+
});
155+
</script>
156+
157+
<div id="content" class="content">
158+
<main>
159+
<h1 id="document-not-found-404"><a class="header" href="#document-not-found-404">Document not found (404)</a></h1>
160+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
161+
162+
</main>
163+
164+
<nav class="nav-wrapper" aria-label="Page navigation">
165+
<!-- Mobile navigation buttons -->
166+
167+
168+
<div style="clear: both"></div>
169+
</nav>
170+
</div>
171+
</div>
172+
173+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
174+
175+
</nav>
176+
177+
</div>
178+
179+
180+
181+
182+
<script>
183+
window.playground_copyable = true;
184+
</script>
185+
186+
187+
<script src="elasticlunr.min.js"></script>
188+
<script src="mark.min.js"></script>
189+
<script src="searcher.js"></script>
190+
191+
<script src="clipboard.min.js"></script>
192+
<script src="highlight.js"></script>
193+
<script src="book.js"></script>
194+
195+
<!-- Custom JS scripts -->
196+
<script src="theme/matlab.min.js"></script>
197+
198+
199+
</div>
200+
</body>
201+
</html>

docs/releases/en_US/v1.15.0/FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
162 KB
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)