mirror of
https://github.com/kotaindah55/extended-markdown-syntax.git
synced 2026-07-22 12:00:23 +00:00
Most of the codes were organized, with the addition of replacing spaces with tabs, removing unused functions and snippets, etc.
19 lines
No EOL
312 B
TypeScript
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
|
|
} |