BasicAritEngine is a lightweight JavaScript arithmetic rendering engine — inspired by MathJax, but designed for simplicity, speed, and education.
-
- − × ÷ processing
- Stacked fractions
- Font switching (math / arial / code)
- Size and color control
- Right-click context menu
- Copy HTML or plain text
- Selection tooltip with RGB info
👉 pages.houselearning.org/qWTQsu11UzUC8iCke3eb
<script type="module" src="https://www.houselearning.org/BasicAritEngine/plugin.js"></script>
<p class="arit">
3/4 + 2 * (6 - 1)
</p>
<script type="module">
import BasicAritEngine from "https://www.houselearning.org/BasicAritEngine/plugin.js";
BasicAritEngine.render(".arit", {
size: "1.6em",
color: "#222",
font: "math"
});
</script>