Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 09ce8cd

Browse files
committed
feat(fusuma): add a11y
1 parent 6820984 commit 09ce8cd

File tree

9 files changed

+1557
-45
lines changed

9 files changed

+1557
-45
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- Themes
2121
- Code syntax Highlight, MathJax, Diagrams, and Flowcharts
2222
- Full supporting for SEO and OGP
23+
- Checking a11y automatically
2324
- Customizable JavaScript and CSS
2425
- A sidebar having agenda and some features
2526

@@ -31,6 +32,7 @@
3132
- Build Mode
3233
- Rendering to html and optimizing js,css,md
3334
- Generating an image of slides as `og:image` automatically
35+
- Checking a11y
3436
- [Presentation Mode](#presenter-mode)
3537
- Speaker Note
3638
- Timer

packages/client/src/setup/prism.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Prism from 'prismjs';
22

3-
import(/* webpackPreload: true, webpackName: 'test' */ '../../assets/style/code.css');
3+
import(/* webpackPreload: true */ '../../assets/style/code.css');
44

55
// check https://github.com/PrismJS/prism/issues/1487
66
Prism.highlightAll();

packages/client/src/utils/createVMEnv.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export async function createVMEnv() {
2-
await import('../../assets/style/executableCode.css');
2+
import('../../assets/style/executableCode.css');
33

44
const { createContext, runInNewContext } = await import('vm-browserify');
55

0 commit comments

Comments
 (0)