1.1.5 • Published 2 years ago

mathpage v1.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

MathPage

A math problem page generator.

If you're cloning this repo directly...

Generating

First install dependencies (tsc and eleventy).

Add problem lists (*.mpls) to /pages (see the format of the example).

Add mathpage.json in your root directory, logo (/out/static/logo.png) and main page (/out/index.html). Then run eleventy.

Your output will be ready in /out.

If you'd like to install the package...

Please use npm i -D mathpage.

Using eleventy

Add file .eleventy.js to your root directory:

const parse = require("./index").parse;

module.exports = (eleventyConfig) => {
    eleventyConfig.addTemplateFormats("mpls");

    eleventyConfig.addExtension("mpls", {
        compile: parse,
    });

    return {
        dir: {
            input: /* INPUT DIRECTORY */,
            output: out,
        },
    };
};

Be sure to delete the /* INPUT DIRECTORY */ and change it into paths.

Add mathpage.json in your root directory, logo (/out/static/logo.png) and main page (/out/index.html). Then run eleventy.

Your output will be ready in /out.

1.1.5

2 years ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago