aurovrata / guppy

WYSIWYG mathematics editor with structured, searchable, LaTeX-compatible, and parseable output

Home Page:http://daniel3735928559.github.io/guppy/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guppy

Synopsis

Guppy is a Javascript-based WYSIWYG editor for mathematics whose content is stored in an XML format that makes Guppy mathematical expressions searchable, parseable, and renderable.

The content of the editor can easily be extracted in a very flexible XML format (for searching or otherwise manipulating), LaTeX (for rendering), or a plaintext format (for parsing).

Demo

A live demo can be found at http://daniel3735928559.github.io/guppy/

Code example

A stripped-down version of the demo page would look like:

<html>
  <head>
    <link rel="stylesheet" href="build/guppy.min.css">
    <script type="text/javascript" src="build/guppy.min.js"></script>
  </head>
  <body>
    <div id="guppy_div" style="width:400px;height:100px;"></div>
    
    <script>
        Guppy.get_symbols(["builtins","sym/symbols.json"]);
        new Guppy("guppy_div");
    </script>
    <button onclick="alert(Guppy.instances.guppy_div.get_content('xml'))">See XML</button>
    <button onclick="alert(Guppy.instances.guppy_div.get_content('latex'))">See LaTeX</button>
    <button onclick="alert(Guppy.instances.guppy_div.get_content('text'))">See ASCII</button>
  </body>
</html>

Installation and deployment

  • Download the build and sym folders.

  • Include the build/guppy.min.js and build/guppy.min.css files in your page.

  • Pass a list of paths to various symbol definition files (several of which are in sym/) as well as the string "builtins" (if you want the built-in symbols, such as Greek letters) to Guppy.get_symbols as in the example above. This only needs to happen once per page. Symbol names from files that appear later in the list will override symbol names from files earlier in the list.

  • For each div that you want turned into a Guppy instance, call new Guppy() passing in as the first argument either the Element object for that div or its ID.

Editor usage

The editor has many of the usual keyboard text-editing features: Navigation with the arrow keys, backspace, home, end, selection with shift-left/right, mod-z/x/c/v for undo, cut, copy, paste (respectively). Using the mouse to navigate and select is also supported.

If you type the name of a mathematical object such as sqrt, the editor will automatically replace that entered text with the corresponding object. The list of symbols supported by default is documented in index.html (or just see the demo page). Further symbols can be added by modifying symbols.json.

Development

When working on the editor, any changes made to the Javascript source (e.g. src/guppy.js needs to be complied by running ./make).

Because the editor makes AJAX requests as part of its normal functioning, testing is best done with a small webserver. For example, running

python3 -m http.server --bind 127.0.0.1 8000

in the root directory of the guppy repository and then browsing to [localhost:8000/index.html] will let you see the current state of the editor with all your modifications. As you're making edits, be sure to run ./make before refreshing in order to see your changes reflected in the page.

If you're in a position where you don't have internet connectivity, you can test using [localhost:8000/basic.html] instead, as this page does not require any outside resources.

Further documentation

Tests

The tests can be run by opening /test/test.html in a browser, for example, by going to http://daniel3735928559.github.io/guppy/test/test.html

License

Guppy is licensed under the MIT License.

About

WYSIWYG mathematics editor with structured, searchable, LaTeX-compatible, and parseable output

http://daniel3735928559.github.io/guppy/


Languages

Language:JavaScript 88.7%Language:HTML 5.7%Language:CSS 5.6%