kotaindah55_extended-markdo.../src/enums/Format.ts
kotaindah55 18b9e0f8f3 refactor: reorganize source codes
Most of the codes were organized, with the addition of replacing spaces with tabs, removing unused functions and snippets, etc.
2025-04-06 23:00:24 +02:00

19 lines
No EOL
312 B
TypeScript

/**
* Formatting type for each token.
*/
export enum Format {
/** Insertion (underline) */
INSERTION = 1,
/** Spoiler */
SPOILER,
/** Superscript */
SUPERSCRIPT,
/** Subscript */
SUBSCRIPT,
/** Highlight */
HIGHLIGHT,
/** Custom span */
CUSTOM_SPAN,
/** Fenced div (custom block) */
FENCED_DIV
}