hedgedoc/markdown-it-plugins/src/image-size/specialCharacters.ts
Tilman Vatteroth f5736dad0f feat: import markdown-it-plugins from https://github.com/hedgedoc/markdown-it-plugins
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-08-26 15:30:30 +02:00

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
}