feat: add mfenced and mtable as vmatrix

This commit is contained in:
Alexandre Nunes 2020-09-19 15:54:39 -03:00
parent 01445dbe93
commit 60c649b8eb

@ -60,6 +60,8 @@ class Matrix {
switch (this._open) { switch (this._open) {
case '(': case '(':
return 'pmatrix'; return 'pmatrix';
case '|':
return 'vmatrix';
default: default:
return 'bmatrix'; return 'bmatrix';
} }