As KaTeX has no split environment I tried to achieve the same by using the aligned environment.
I tried the following:
\begin{alinged}
a &= b + c \\
&= e + f
\end{aligned}
This approach works under LaTeX, but not under KaTeX. For KaTeX I have to add \\ at the end of the last line as well, otherwise the line is missing in the HTML document (see picture below):
\begin{alinged}
a &= b + c \\
&= e + f \\
\end{aligned}

Code to produce the picture: https://gist.github.com/hagenw/1260f21203b4095a061ac3da6b01b5e4
@hagenw, PR #949 was written to fix a problem with parsing a empty cell at the beginning of the last line in an array. I expect a release this weekend that will include PR #949. Could you try again after that release and tell me if your problem recurs?
0.9.0-alpha2 is out now! Please give a try.
I've also updated the demo to 0.9.0-alpha2 and have verified that it works there.

Most helpful comment
I've also updated the demo to 0.9.0-alpha2 and have verified that it works there.
