mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-07 01:51:36 -04:00
feat: import markdown-it-plugins from https://github.com/hedgedoc/markdown-it-plugins
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
1d90013344
commit
f5736dad0f
37 changed files with 2025 additions and 0 deletions
19
markdown-it-plugins/src/image-size/specialCharacters.ts
Normal file
19
markdown-it-plugins/src/image-size/specialCharacters.ts
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue