mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-01 23:58:58 -04:00
19 lines
409 B
TypeScript
19 lines
409 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
export enum SpecialCharacters {
|
|
EXCLAMATION_MARK = 0x21,
|
|
OPENING_BRACKET = 0x5b,
|
|
OPENING_PARENTHESIS = 0x28,
|
|
WHITESPACE = 0x20,
|
|
NEW_LINE = 0x0a,
|
|
EQUALS = 0x3d,
|
|
LOWER_CASE_X = 0x78,
|
|
NUMBER_ZERO = 0x30,
|
|
NUMBER_NINE = 0x39,
|
|
PERCENTAGE = 0x25,
|
|
CLOSING_PARENTHESIS = 0x29
|
|
}
|