Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
Tilman Vatteroth 2023-08-26 14:54:15 +02:00
parent 1d90013344
commit f5736dad0f
37 changed files with 2025 additions and 0 deletions

View file

@ -0,0 +1,19 @@
/*
* 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
}