Skip to content

Commit c94d6b0

Browse files
First pass simplifying the docs
1 parent ef8b453 commit c94d6b0

File tree

72 files changed

+2205
-6679
lines changed

Some content is hidden

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

72 files changed

+2205
-6679
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,7 @@ dist/
1919
*.tgz
2020
package
2121

22+
docs/build/
23+
2224
# This is just for personal use
2325
ignore/

CONTRIBUTING.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
Thanks for looking here! We'd love your help. The micro:bit project is only
22
possible through contributions of companies and individuals around the world.
33

4-
This project is managed on GitHub, and the best way to contribute is to jump in
5-
and fix/file issues.
6-
7-
https://github.com/microbit-foundation/microbit-fs
4+
This project is managed [in this GitHub project](https://github.com/microbit-foundation/microbit-fs), and the best way to contribute
5+
is to jump in and fix/file issues.
86

97
If you're interested in working on any of these items, please file an issue
108
and mention @microbit-carlos.

config/docs/api/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg=="
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
:root {
2+
--light-hl-0: #001080;
3+
--dark-hl-0: #9CDCFE;
4+
--light-hl-1: #000000;
5+
--dark-hl-1: #D4D4D4;
6+
--light-code-background: #FFFFFF;
7+
--dark-code-background: #1E1E1E;
8+
}
9+
10+
@media (prefers-color-scheme: light) { :root {
11+
--hl-0: var(--light-hl-0);
12+
--hl-1: var(--light-hl-1);
13+
--code-background: var(--light-code-background);
14+
} }
15+
16+
@media (prefers-color-scheme: dark) { :root {
17+
--hl-0: var(--dark-hl-0);
18+
--hl-1: var(--dark-hl-1);
19+
--code-background: var(--dark-code-background);
20+
} }
21+
22+
:root[data-theme='light'] {
23+
--hl-0: var(--light-hl-0);
24+
--hl-1: var(--light-hl-1);
25+
--code-background: var(--light-code-background);
26+
}
27+
28+
:root[data-theme='dark'] {
29+
--hl-0: var(--dark-hl-0);
30+
--hl-1: var(--dark-hl-1);
31+
--code-background: var(--dark-code-background);
32+
}
33+
34+
.hl-0 { color: var(--hl-0); }
35+
.hl-1 { color: var(--hl-1); }
36+
pre, code { background: var(--code-background); }

config/docs/api/assets/icons.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)