We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094b43a commit 76bb266Copy full SHA for 76bb266
episodes/30.md
@@ -1146,6 +1146,16 @@ _(Transcript sponsored by James Koppel)_
1146
</div>
1147
1148
1149
+<script>
1150
+// linkify each block of text with a unique ID
1151
+[].slice.call(document.querySelectorAll('.block')).map(b => b.firstElementChild).forEach((el, i) => {
1152
+ var a = document.createElement('a');
1153
+ a.href = "#" + i;
1154
+ a.name = "" + i;
1155
+ el.parentNode.insertBefore(a, el);
1156
+ a.appendChild(el);
1157
+})
1158
+</script>
1159
1160
<script repoPath="stevekrouse/futureofcoding.org" type="text/javascript" src="/unbreakable-links/index.js"></script>
1161
<script>
0 commit comments