Add items for hash_seed

This commit is contained in:
YishiMichael 2022-03-28 19:02:50 +08:00
parent 0e31ff12e2
commit 45faa9063b
No known key found for this signature in database
GPG key ID: EC615C0C5A86BC80
2 changed files with 5 additions and 4 deletions

View file

@ -498,7 +498,6 @@ class MTex(LabelledString):
"tex_environment": "align*",
"isolate": [],
"tex_to_color_map": {},
"use_plain_file": False,
}
def __init__(self, tex_string: str, **kwargs):
@ -518,13 +517,13 @@ class MTex(LabelledString):
self.__class__.__name__,
self.svg_default,
self.path_string_config,
self.tex_string,
self.base_color,
self.use_plain_file,
self.tex_string,
self.alignment,
self.tex_environment,
self.isolate,
self.tex_to_color_map,
self.use_plain_file
self.tex_to_color_map
)
def get_file_path_by_content(self, content: str) -> str:

View file

@ -161,6 +161,8 @@ class MarkupText(LabelledString):
self.__class__.__name__,
self.svg_default,
self.path_string_config,
self.base_color,
self.use_plain_file,
self.text,
self.is_markup,
self.font_size,