Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:34:45 +01:00
parent 4b674c7c60
commit 6e9116e819
13187 changed files with 1493219 additions and 337 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
}