Skip to content

Commit

Permalink
First pass simplifying the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-matt-hillsdon committed Jan 27, 2025
1 parent ef8b453 commit c94d6b0
Show file tree
Hide file tree
Showing 72 changed files with 2,205 additions and 6,679 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,7 @@ dist/
*.tgz
package

docs/build/

# This is just for personal use
ignore/
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
Thanks for looking here! We'd love your help. The micro:bit project is only
possible through contributions of companies and individuals around the world.

This project is managed on GitHub, and the best way to contribute is to jump in
and fix/file issues.

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

If you're interested in working on any of these items, please file an issue
and mention @microbit-carlos.
1 change: 1 addition & 0 deletions config/docs/api/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +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.
1 change: 1 addition & 0 deletions config/docs/api/assets/hierarchy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg=="
36 changes: 36 additions & 0 deletions config/docs/api/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
:root {
--light-hl-0: #001080;
--dark-hl-0: #9CDCFE;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-code-background: #FFFFFF;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--code-background: var(--dark-code-background);
} }

:root[data-theme='light'] {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--code-background: var(--light-code-background);
}

:root[data-theme='dark'] {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
pre, code { background: var(--code-background); }
18 changes: 18 additions & 0 deletions config/docs/api/assets/icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c94d6b0

Please sign in to comment.