refactor: group syntax files to single one
This commit is contained in:
parent
65e1d0985c
commit
b86144ca84
@ -1,6 +1,5 @@
|
||||
import { MathMLTag } from './MathMLTag';
|
||||
import { allMathSymbolsByChar } from '../../../../syntax/allMathSymbolsByChar';
|
||||
import { allMathSymbolsByGlyph } from '../../../../syntax/allMathSymbolsByGlyph';
|
||||
import { allMathSymbolsByChar, allMathSymbolsByGlyph } from '../../../../syntax';
|
||||
|
||||
export class MI extends MathMLTag {
|
||||
constructor(value: string, attributes: Record<string, string>, children: MathMLTag[]) {
|
||||
|
@ -1,6 +1,5 @@
|
||||
import { MathMLTag } from './MathMLTag';
|
||||
import { allMathOperatorsByChar } from '../../../../syntax/allMathOperatorsByChar';
|
||||
import { allMathOperatorsByGlyph } from '../../../../syntax/allMathOperatorsByGlyph';
|
||||
import { allMathOperatorsByChar, allMathOperatorsByGlyph } from '../../../../syntax';
|
||||
|
||||
export class MO extends MathMLTag {
|
||||
constructor(value: string, attributes: Record<string, string>, children: MathMLTag[]) {
|
||||
|
5
src/syntax/index.ts
Normal file
5
src/syntax/index.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export * from './allMathOperatorsByChar';
|
||||
export * from './allMathOperatorsByGlyph';
|
||||
export * from './allMathSymbolsByChar';
|
||||
export * from './allMathSymbolsByGlyph';
|
||||
export * from './latexAccents';
|
Loading…
Reference in New Issue
Block a user