forked from Iota-School/notebooks-for-all
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
216 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
docs | ||
site | ||
tests/exports | ||
nbconvert_html5/templates/a11y/light-code.css | ||
nbconvert_html5/templates/a11y/dark-code.css | ||
nbconvert_a11y/templates/a11y/light-code.css | ||
nbconvert_a11y/templates/a11y/dark-code.css | ||
|
||
*~ | ||
*# | ||
.#* | ||
*.pyc | ||
.python-version | ||
nbconvert_html5.egg-info | ||
nbconvert_a11y.egg-info | ||
node_modules | ||
__pycache__ | ||
.doit.db.* | ||
nbconvert_html5/_version.py | ||
nbconvert_a11y/_version.py | ||
tests/outputs/*.html | ||
build/* | ||
tests/out.html | ||
*-checkpoint* | ||
docs/**/*.html | ||
docs/**/*.json | ||
settings.json | ||
nbconvert_html5/templates/a11y/axe.js | ||
nbconvert_a11y/templates/a11y/axe.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"title": "nb-settings", | ||
"description": "application level settings", | ||
"$comment": "these settings are independent of content.", | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"properties": { | ||
"color": { | ||
"title": "color settings", | ||
"description": "modify color scheme, accent colors, and apply color filters", | ||
"properties": { | ||
"type": "object", | ||
"scheme": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"description": "light mode or dark mode.", | ||
"enum": [ | ||
null, | ||
"light", | ||
"dark" | ||
], | ||
"default": null | ||
}, | ||
"accent": { | ||
"description": "accent color for interactive elements", | ||
"format": "color", | ||
"type": "string" | ||
}, | ||
"filters": { | ||
"description": "color filters", | ||
"properties": { | ||
"invert": { | ||
"description": "invert all colors", | ||
"type": "boolean", | ||
"default": false | ||
}, | ||
"sepia": { | ||
"description": "apply a sepia filter to all the contents", | ||
"type": "boolean", | ||
"default": false | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"layout": { | ||
"type": "object", | ||
"description": "configure text and layout settings", | ||
"properties": { | ||
"margin": { | ||
"description": "increase or decrease viewport margins", | ||
"type": "integer", | ||
"multipleOf": 5, | ||
"minimum": 0, | ||
"maximum": 40 | ||
}, | ||
"font-size": { | ||
"description": "make the font size smaller or larger", | ||
"type": "string", | ||
"enum": [ | ||
"xx-small", | ||
"x-small", | ||
"small", | ||
"medium", | ||
"large", | ||
"x-large", | ||
"xx-large" | ||
], | ||
"default": "medium" | ||
}, | ||
"serif": { | ||
"description": "include extra serif strokes on letters", | ||
"$comment": "serifs improve readability on larger screens", | ||
"type": "boolean", | ||
"default": true | ||
} | ||
} | ||
}, | ||
"sound": { | ||
"description": "configure sound effects and screen settings", | ||
"properties": { | ||
"role": { | ||
"description": "screen reader's primary navigation mode", | ||
"default": "list", | ||
"enum": [ | ||
"list", "table", "landmark" | ||
] | ||
}, | ||
"synthetic": { | ||
"description": "activate synthetic speech", | ||
"type": "boolean", | ||
"default": false | ||
} | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.