Skip to content

Commit dabf845

Browse files
Update index.html
1 parent df0c7e5 commit dabf845

1 file changed

Lines changed: 126 additions & 0 deletions

File tree

index.html

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,129 @@
2626
</script>
2727
</body>
2828
</html>
29+
30+
<html>
31+
<head>
32+
<title>Docs Index</title>
33+
<style>
34+
body {
35+
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
36+
padding: 20px;
37+
background: #f5f5f7;
38+
}
39+
40+
h1 {
41+
margin-bottom: 16px;
42+
}
43+
44+
ul {
45+
list-style: none;
46+
padding: 0;
47+
display: flex;
48+
flex-wrap: wrap;
49+
gap: 8px;
50+
}
51+
52+
li {
53+
margin: 0;
54+
}
55+
56+
a {
57+
display: inline-block;
58+
padding: 8px 14px;
59+
border-radius: 6px;
60+
background: #2563eb;
61+
color: #ffffff;
62+
text-decoration: none;
63+
font-size: 14px;
64+
border: 1px solid #1d4ed8;
65+
transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
66+
}
67+
68+
a:hover {
69+
background: #1d4ed8;
70+
transform: translateY(-1px);
71+
box-shadow: 0 2px 6px rgba(15, 23, 42, 0.25);
72+
}
73+
74+
a:active {
75+
transform: translateY(0);
76+
box-shadow: none;
77+
}
78+
</style>
79+
</head>
80+
81+
<body>
82+
<h1>Documentation Files</h1>
83+
84+
<ul>
85+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/_getFactoryInstance.md" target="_blank">_getFactoryInstance.md</a></li>
86+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/allocate.md" target="_blank">allocate.md</a></li>
87+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/analyzing_code.md" target="_blank">analyzing_code.md</a></li>
88+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/assertionFailureFunction.md" target="_blank">assertionFailureFunction.md</a></li>
89+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/assertion_failure.md" target="_blank">assertion_failure.md</a></li>
90+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/auto-fill-sample.md" target="_blank">auto-fill-sample.md</a></li>
91+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/binRange.md" target="_blank">binRange.md</a></li>
92+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/binary.md" target="_blank">binary.md</a></li>
93+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/blame.md" target="_blank">blame.md</a></li>
94+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/bpp.md" target="_blank">bpp.md</a></li>
95+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/bufIndexOf.md" target="_blank">bufIndexOf.md</a></li>
96+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/bufferHash.md" target="_blank">bufferHash.md</a></li>
97+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/buffers.md" target="_blank">buffers.md</a></li>
98+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/buffers_vs_arrays.md" target="_blank">buffers_vs_arrays.md</a></li>
99+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/bytes.md" target="_blank">bytes.md</a></li>
100+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/cache.md" target="_blank">cache.md</a></li>
101+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/currentScene.md" target="_blank">currentScene.md</a></li>
102+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/decoder.md" target="_blank">decoder.md</a></li>
103+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/destroy-all-sprites.md" target="_blank">destroy-all-sprites.md</a></li>
104+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/dmesg.md" target="_blank">dmesg.md</a></li>
105+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/dump.md" target="_blank">dump.md</a></li>
106+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/exportModifier.md" target="_blank">exportModifier.md</a></li>
107+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/fixed-size.md" target="_blank">fixed-size.md</a></li>
108+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/fixedArray.md" target="_blank">fixedArray.md</a></li>
109+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/fixed_point.md" target="_blank">fixed_point.md</a></li>
110+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/for-loops-vs-for-element-loops.md" target="_blank">for-loops-vs-for-element-loops.md</a></li>
111+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/function-output.md" target="_blank">function-output.md</a></li>
112+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/getNumber.md" target="_blank">getNumber.md</a></li>
113+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/globalThis.md" target="_blank">globalThis.md</a></li>
114+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/hardware.md" target="_blank">hardware.md</a></li>
115+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/helperAnnotation.md" target="_blank">helperAnnotation.md</a></li>
116+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/helpers.md" target="_blank">helpers.md</a></li>
117+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/history-of-bytes.md" target="_blank">history-of-bytes.md</a></li>
118+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/how-to-download-files-in-makecode.md" target="_blank">how-to-download-files-in-makecode.md</a></li>
119+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/implOfSceneStacks.md" target="_blank">implOfSceneStacks.md</a></li>
120+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/implementingAnIndexSignature.md" target="_blank">implementingAnIndexSignature.md</a></li>
121+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/internal_properties.md" target="_blank">internal_properties.md</a></li>
122+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/lf.md" target="_blank">lf.md</a></li>
123+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/limit_of_offsets_for_setNumber.md" target="_blank">limit_of_offsets_for_setNumber.md</a></li>
124+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/memory.md" target="_blank">memory.md</a></li>
125+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/mixed-arrays.md" target="_blank">mixed-arrays.md</a></li>
126+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/monochrome.md" target="_blank">monochrome.md</a></li>
127+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/numberFormat.md" target="_blank">numberFormat.md</a></li>
128+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/panic_core.md" target="_blank">panic_core.md</a></li>
129+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/popScene.md" target="_blank">popScene.md</a></li>
130+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/pushScene.md" target="_blank">pushScene.md</a></li>
131+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/raw_infinite_for_loops.md" target="_blank">raw_infinite_for_loops.md</a></li>
132+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/reading-makecode-docs-clearly.md" target="_blank">reading-makecode-docs-clearly.md</a></li>
133+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/reading_rendered_help_sources.md" target="_blank">reading_rendered_help_sources.md</a></li>
134+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/resourcesForUsingDevTools.md" target="_blank">resourcesForUsingDevTools.md</a></li>
135+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/serial-and-parallel.md" target="_blank">serial-and-parallel.md</a></li>
136+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/setNumber.md" target="_blank">setNumber.md</a></li>
137+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/shimArguments.md" target="_blank">shimArguments.md</a></li>
138+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/shimClasses.md" target="_blank">shimClasses.md</a></li>
139+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/shims.md" target="_blank">shims.md</a></li>
140+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/soft_panic.md" target="_blank">soft_panic.md</a></li>
141+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/statementsVsExpressions.md" target="_blank">statementsVsExpressions.md</a></li>
142+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/target_panic.md" target="_blank">target_panic.md</a></li>
143+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/third-part-extension-notice.md" target="_blank">third-part-extension-notice.md</a></li>
144+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/throwFunction.md" target="_blank">throwFunction.md</a></li>
145+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/twoCollons.md" target="_blank">twoCollons.md</a></li>
146+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/unary.md" target="_blank">unary.md</a></li>
147+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/underscore_public_properties_and_methods.md" target="_blank">underscore_public_properties_and_methods.md</a></li>
148+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/using-the-right-memory-byte-unit.md" target="_blank">using-the-right-memory-byte-unit.md</a></li>
149+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/using_help_annotations_correctly.md" target="_blank">using_help_annotations_correctly.md</a></li>
150+
<li><a href="https://raw.githubusercontent.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/master/docs/ways-to-be-like-a-pro.md" target="_blank">ways-to-be-like-a-pro.md</a></li>
151+
</ul>
152+
153+
</body>
154+
</html>

0 commit comments

Comments
 (0)