-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (109 loc) · 5.57 KB
/
index.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>index.nim</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2280%22>🐳</text></svg>">
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="nimib 0.3.10" name="generator">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.min.css">
<link rel='stylesheet' href='https://cdn.jsdelivr.net/gh/pietroppeter/nimib/assets/atom-one-light.css'>
<script src="https://cdn.jsdelivr.net/gh/pietroppeter/nimib@main/assets/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<style>
.nb-box {
display: flex;
align-items: center;
justify-content: space-between;
}
.nb-small {
font-size: 0.8rem;
}
button.nb-small {
float: right;
padding: 2px;
padding-right: 5px;
padding-left: 5px;
}
section#source {
display:none
}
pre > code {
font-size: 1.2em;
}
.nb-output {
line-height: 1.15;
}
figure {
margin: 2rem 0;
}
figcaption {
text-align: center;
}
</style>
</head>
<body>
<header>
<div class="nb-box">
<span><a href=".">🏡</a></span>
<span><code>index.nim</code></span>
<span><a href="https://github.com/dlesnoff/nimMacros.github.io"><svg aria-hidden="true" width="1.2em" height="1.2em" style="vertical-align: middle;" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59c.4.07.55-.17.55-.38c0-.19-.01-.82-.01-1.49c-2.01.37-2.53-.49-2.69-.94c-.09-.23-.48-.94-.82-1.13c-.28-.15-.68-.52-.01-.53c.63-.01 1.08.58 1.23.82c.72 1.21 1.87.87 2.33.66c.07-.52.28-.87.51-1.07c-1.78-.2-3.64-.89-3.64-3.95c0-.87.31-1.59.82-2.15c-.08-.2-.36-1.02.08-2.12c0 0 .67-.21 2.2.82c.64-.18 1.32-.27 2-.27c.68 0 1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82c.44 1.1.16 1.92.08 2.12c.51.56.82 1.27.82 2.15c0 3.07-1.87 3.75-3.65 3.95c.29.25.54.73.54 1.48c0 1.07-.01 1.93-.01 2.2c0 .21.15.46.55.38A8.013 8.013 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="#000"></path></svg></a></span>
</div>
<hr>
</header><main>
<h1>Dimitri Lesnoff's blog</h1>
<p>A blog about the Nim language. You can find some of my programs and tutorials.</p>
<ul>
<li><a href="blogPosts/macroTutorial.html">blogPosts/macroTutorial.html</a></li>
<li><a href="blogPosts/macroTutorial_fr.html">blogPosts/macroTutorial_fr.html</a></li>
</ul>
<p>based on <a href="https://pietroppeter.github.io/nblog">Pietro Peterlongo's blog</a>.</p>
</main>
<footer>
<div class="nb-box">
<span><span class="nb-small">made with <a href="https://pietroppeter.github.io/nimib/">nimib 🐳</a></span></span>
<span></span>
<span><button class="nb-small" id="show" onclick="toggleSourceDisplay()">Show Source</button></span>
</div>
</footer>
<section id="source">
<pre><code class="nohighlight nim hljs"><span class="hljs-keyword">import</span> nimib, nimib / [paths, gits], os, strutils, strformat
nbInit
<span class="hljs-keyword">var</span>
listOfDrafts: <span class="hljs-built_in">string</span> = <span class="hljs-string">""</span>
link: <span class="hljs-built_in">string</span> = <span class="hljs-string">""</span>
<span class="hljs-keyword">for</span> file <span class="hljs-keyword">in</span> walkDirRec(nbHomeDir):
<span class="hljs-comment"># echo getFileInfo(file).id.repr</span>
<span class="hljs-keyword">if</span> <span class="hljs-keyword">not</span> file.endswith(<span class="hljs-string">".html"</span>) <span class="hljs-keyword">or</span> file.name.startsWith(<span class="hljs-string">"index"</span>) <span class="hljs-keyword">or</span> (<span class="hljs-keyword">not</span> file.isGitTracked):
<span class="hljs-comment"># echo file.repr, " ", file.isGitTracked</span>
<span class="hljs-keyword">continue</span>
link = file.relPath.replace(<span class="hljs-string">r"\"</span>, <span class="hljs-string">"/"</span>)
<span class="hljs-keyword">echo</span> <span class="hljs-string">"adding link: "</span>, link
<span class="hljs-keyword">when</span> <span class="hljs-keyword">defined</span>(nblogRerun):
<span class="hljs-keyword">let</span> cmd = <span class="hljs-string">"nim r "</span> & link.replace(<span class="hljs-string">".html"</span>, <span class="hljs-string">".nim"</span>)
<span class="hljs-keyword">echo</span> <span class="hljs-string">"executing "</span> & cmd
<span class="hljs-keyword">if</span> execShellCmd(cmd) != <span class="hljs-number">0</span>:
<span class="hljs-keyword">echo</span> cmd & <span class="hljs-string">" FAILED"</span>
listOfDrafts.add(&<span class="hljs-string">"* [{link}]({link})</span><span class="hljs-meta">\n</span><span class="hljs-string">"</span>)
nbText: <span class="hljs-string">"""# Dimitri Lesnoff's blog
A blog about the Nim language. You can find some of my programs and tutorials.
"""</span> & listOfDrafts
nbText: <span class="hljs-string">"""
based on [Pietro Peterlongo's blog](https://pietroppeter.github.io/nblog).
"""</span>
nbSave
</code></pre>
</section><script>
function toggleSourceDisplay() {
var btn = document.getElementById("show")
var source = document.getElementById("source");
if (btn.innerHTML=="Show Source") {
btn.innerHTML = "Hide Source";
source.style.display = "block";
} else {
btn.innerHTML = "Show Source";
source.style.display = "none";
}
}
</script></body>
</html>