make progress visable and only show registration if enabled
This commit is contained in:
parent
b134b19876
commit
ff176028d1
8 changed files with 42 additions and 20 deletions
|
|
@ -8,6 +8,8 @@ export const normalizeFiletype = (filetype: string): string => {
|
|||
return "html";
|
||||
case "tex":
|
||||
return "latex";
|
||||
case "md":
|
||||
return "markdown";
|
||||
default:
|
||||
return lowercaseFiletype;
|
||||
}
|
||||
|
|
@ -21,6 +23,8 @@ export const normalizeOutputFiletype = (filetype: string): string => {
|
|||
return "jpg";
|
||||
case "latex":
|
||||
return "tex";
|
||||
case "markdown":
|
||||
return "md";
|
||||
default:
|
||||
return lowercaseFiletype;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue