Skip to content

Commit 344e2bf

Browse files
committed
Add bundling script and move some stuff around
1 parent 5fdd850 commit 344e2bf

16 files changed

+10330
-1461
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,15 @@ UnicodeMathML is intentionally kept simple and doesn't have any dependencies bey
121121
122122
TODO architecture overview
123123
124-
TODO note on generating parser and storing it in static file
124+
TODO note on bundling, generating parser and storing it in static file
125125
126126
TODO note: when running playground on your local machine in chrome (TODO other browsers?), make sure to either
127127
* spin up a `python -m SimpleHTTPServer 8000` to circumvent pegjs grammar file loading being prevented due to same-origin policy stuff (TODO still current?)
128128
* open chrome (on macos anyway) with `open -a Google\ Chrome --args --disable-web-security --user-data-dir`
129129
* set the `security.fileuri.strict_origin_policy` key on `about:config` in Firefox to `false`
130130
TODO see https://gist.github.com/willurd/5720255
131-
TODO is this all still necessary? nope?
131+
TODO note that there's a reason playground is located at the root: were it in a subdirectory, it couldn't access ../ stuff when served directly from the file system due to same origin policy
132+
TODO is this all still necessary? nope? test by moving playground to subfolder?
132133
133134
134135
## Related Work
@@ -142,10 +143,10 @@ TODO is this all still necessary? nope?
142143
143144
You may use this repository's contents under the terms of the *MIT License*, see `LICENSE`.
144145
145-
However, the subdirectories `lib/`, `markdeep-integration/` and `playground-assets/lib/` contain some **third-party software with its own licenses**:
146+
However, the subdirectories `lib/` and `playground-assets/lib/` contain some **third-party software with its own licenses**:
146147
147148
* The parser generator [PEG.js](https://github.com/pegjs/pegjs), a copy of which is located at `lib/peg-0.10.0.min.js`, is licensed under the *MIT License*, see [here](https://github.com/pegjs/pegjs/blob/master/LICENSE).
148-
* Morgan McGuire's [Markdeep](https://casual-effects.com/markdeep/), which – along with two slightly modified variants – is located at `markdeep-integration/markdeep-*.js`, is licensed under the *BSD 2-Clause "Simplified" License*, see [here](https://casual-effects.com/markdeep/#license).
149+
* Morgan McGuire's [Markdeep](https://casual-effects.com/markdeep/), which – along with a slightly modified variant that integrates with UnicodeMathML – is located at `lib/markdeep-1.11-orig.js`, is licensed under the *BSD 2-Clause "Simplified" License*, see [here](https://casual-effects.com/markdeep/#license).
149150
* Markdeep includes Ivan Sagalaev's [highlight.js](https://highlightjs.org) with its *BSD 3-Clause License*, see [here](https://github.com/highlightjs/highlight.js/blob/master/LICENSE).
150151
* [JQuery](https://jquery.com), which powers some of the interactions in the UnicodeMathML playground and resides at `playground-assets/lib/jquery.min.js`, is licensed under the *MIT License*, see [here](https://jquery.org/license/).
151152
* A stripped-down variant of [MathJax](https://www.mathjax.org) is included at `playground-assets/lib/mathjax/`, it's licensed under the *Apache License 2.0*, see [here](https://github.com/mathjax/MathJax/blob/master/LICENSE).

markdeep-integration/html.html dist/example.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,10 @@
3636
resolveControlWords: true,
3737
};
3838
</script>
39-
<script src="../src/unicodemathml.js"></script>
40-
<script src="../dist/unicodemathml-parser.js"></script>
39+
<script src="unicodemathml.js"></script>
40+
<script src="unicodemathml-parser.js"></script>
4141
<script src="unicodemathml-integration.js"></script>
4242
<script>
4343
document.body.onload = renderUnicodemath();
44-
// TODO embed mathjax?
4544
</script>
4645
</body>

markdeep-integration/markdeep.md.html dist/example.md.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@
529529
}
530530
};
531531
</script>
532-
<script src="../src/unicodemathml.js"></script>
533-
<script src="../dist/unicodemathml-parser.js"></script>
532+
<script src="unicodemathml.js"></script>
533+
<script src="unicodemathml-parser.js"></script>
534534
<script src="unicodemathml-integration.js"></script>
535535
<script src="markdeep-1.11.js" charset="utf-8"></script>
File renamed without changes.

dist/unicodemathml-parser.js

+1,491-1,450
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)