You wrote that you have an OpenType font and you want to export equations in SVG files. Then it is probably best if you you XeTeX as TeX engine because that allows you to use your OpenType font directly and it works great with dvisvgm, a program to convert TeX output to SVG.
Before using your font as math font, you have to make sure that it contains all the metadata expected from Math fonts. How to do this depends on the program you use for creating the font, but e.g. in FontForge, you can find it under Element > Other Info > MATH Info. There one of the biggest and most important categories are the Constants. Short descriptions of the meaning of each of these can be found at https://docs.microsoft.com/en-us/typography/opentype/spec/math#mathconstants-table, including suggested values for some of them. If you are not sure about some of them it can help to look into other OpenType math fonts like Latin Modern Math to get some inspiration. This menu also allows you to setup extensible delimiters, accents, italic correction etc.
But let's assume that all that is already done. Then you can load the font in XeLaTeX: The easiest way here is to use unicode-math:
\documentclass{standalone}
\usepackage{unicode-math}
\setmathfont{my-mystery-math-font.otf}
\begin{document}
Now let's write some Math in our new font:
\[a^2+b^2=c^2.\]
\end{document}
This has to be compiled with XeLaTeX, so run xelatex instead of pdflatex in your shell or select the XeLaTeX option in your editor.
unicode-math. There are many examples. This is much, much more elegant than trying to make a bunch of 8-bit symbol fonts and hack together a package that works. – Davislor Jul 05 '20 at 19:15\documentclass{standalone}and convert from PDF to SVG. – Davislor Jul 05 '20 at 19:17