Skip to content

Commit 1c9b45c

Browse files
committed
ores/auto-commit => 'set'
1 parent 3c7a6ae commit 1c9b45c

File tree

5 files changed

+48
-1
lines changed

5 files changed

+48
-1
lines changed

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
// dom.appendChild('');
3333

34-
3534
const asyncc = window.__asyncc__ = {};
3635

3736
asyncc.latestVersion = 'v/0.1.0';

md/html-from-md.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?autoload=true&lang=java"></script>
2+
3+
<h3 id="this-is-title">This is title</h3>
4+
<p><a name="abcde"></a></p>
5+
<pre lang="java" class="prettyprint">
6+
7+
class NeoEach {
8+
9+
static <T, V, E> void Each(int limit, Iterable<T> i, Asyncc.IEacher<T, E> m, Asyncc.IEachCallback<E> f) {
10+
11+
final CounterLimit c = new CounterLimit(limit);
12+
final ShortCircuit s = new ShortCircuit();
13+
final var iterator = i.iterator();
14+
RunEach(iterator, c, s, m, f);
15+
handleSameTickCall(s);
16+
}
17+
18+
}
19+
</pre>
20+

md/markdown-input.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?autoload=true&lang=java"></script>
3+
4+
### This is title
5+
6+
<a name="abcde"></a>
7+
<pre lang="java" class="prettyprint">
8+
9+
class NeoEach {
10+
11+
static <T, V, E> void Each(int limit, Iterable<T> i, Asyncc.IEacher<T, E> m, Asyncc.IEachCallback<E> f) {
12+
13+
final CounterLimit c = new CounterLimit(limit);
14+
final ShortCircuit s = new ShortCircuit();
15+
final var iterator = i.iterator();
16+
RunEach(iterator, c, s, m, f);
17+
handleSameTickCall(s);
18+
}
19+
20+
}
21+
</pre>

scripts/convert-from-md-to-html.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
pandoc md/markdown-input.md --from=gfm -t html -o md/html-from-md.html

todos.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
https://github.com/cwjohan/markdown-to-html
3+
4+
https://stackoverflow.com/questions/31206176/how-to-use-anchor-tag-to-scroll-within-div-without-autoscrolling-entire-page

0 commit comments

Comments
 (0)