Rename font/ => fonts/

First suggested by https://mathquill.slack.com/archives/mathquill/p1486494860000902

It's definitely the consensus:
KaTeX
  https://github.com/Khan/KaTeX/tree/f3df1ccbac4c61efd55bec423bc8509f8d173fb2/static/fonts
MathJax
  https://github.com/mathjax/MathJax/tree/6273842a9746731b9ecca0de18ec9fd50a36df99/fonts
FontAwesome
  https://github.com/FortAwesome/Font-Awesome/tree/04dad1e192b129ab09cddcd9b1aefb8b189c8d79/fonts
materialize
  https://github.com/Dogfalo/materialize/tree/189722c9cac812f5e9b3b05299298e8d4e90d7c5/fonts
a blogpost on React-Meteor
  https://medium.com/@abhaytalreja/custom-fonts-in-react-meteor-app-ebe2a7fc7a2b#.43mnzbxaj
clinical-meteor
  https://github.com/clinical-meteor/fonts

It's even the consensus for Rails and Django:
react_on_rails "recommended project structure"
  https://github.com/shakacode/react_on_rails/blob/9483bf8aaa2610a0ba5c5f04a551001f99589b0d/docs/additional-reading/recommended-project-structure.md#directory-structure
"Custom Web Fonts and the Rails Asset Pipeline": "The recommended way"
  https://gist.github.com/anotheruiguy/7379570#the-recommended-way
"Ultimate Django"
  https://ultimatedjango.com/learn-django/lessons/serving-static-files/
someone on stackoverflow "Best practice for Django project working
directory structure"
  http://stackoverflow.com/a/35244323/362030
13 files changed
tree: eb80c4b918e1bfa4afb71db4116ff3ebf20896fe
  1. docs/
  2. script/
  3. src/
  4. test/
  5. .gitattributes
  6. .gitignore
  7. BUILDING
  8. CHANGELOG.md
  9. circle.yml
  10. Makefile
  11. mkdocs.yml
  12. package.json
  13. quickstart.html
  14. README.md
README.md

MathQuill

by Han, Jeanine, and Mary (maintainers@mathquill.com)

MathQuill is a web formula editor designed to make typing math easy and beautiful.

The MathQuill project is supported by its partners. We hold ourselves to a compassionate Code of Conduct.

MathQuill is resuming active development and we‘re committed to getting things running smoothly. Find a dusty corner? Let us know in Slack. (Prefer IRC? We’re #mathquill on Freenode.)

Getting Started

MathQuill has a simple interface. This brief example creates a MathQuill element and renders, then reads a given input:

var htmlElement = document.getElementById('some_id');
var config = {
  handlers: { edit: function(){ ... } },
  restrictMismatchedBrackets: true
};
var mathField = MQ.MathField(htmlElement, config);

mathField.latex('2^{\\frac{3}{2}}'); // Renders the given LaTeX in the MathQuill field
mathField.latex(); // => '2^{\\frac{3}{2}}'

Check out our Getting Started Guide for setup instructions and basic MathQuill usage.

Docs

Most documentation for MathQuill is located on ReadTheDocs.

Some older documentation still exists on the Wiki.

Open-Source License

The Source Code Form of MathQuill is subject to the terms of the Mozilla Public License, v. 2.0: http://mozilla.org/MPL/2.0/

The quick-and-dirty is you can do whatever if modifications to MathQuill are in public GitHub forks. (Other ways to publicize modifications are also fine, as are private use modifications. See also: MPL 2.0 FAQ)