1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

11
node_modules/bare-path/lib/constants.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
CHAR_UPPERCASE_A: 0x41,
CHAR_LOWERCASE_A: 0x61,
CHAR_UPPERCASE_Z: 0x5a,
CHAR_LOWERCASE_Z: 0x7a,
CHAR_DOT: 0x2e,
CHAR_FORWARD_SLASH: 0x2f,
CHAR_BACKWARD_SLASH: 0x5c,
CHAR_COLON: 0x3a,
CHAR_QUESTION_MARK: 0x3f
}