folder rename from .bmad to _bmad

This commit is contained in:
Brian Madison
2025-12-13 16:22:34 +08:00
parent 0c873638ab
commit 25c79e3fe5
375 changed files with 1421 additions and 2745 deletions

View File

@@ -1,11 +1,5 @@
const fs = require('fs-extra');
function escapeXml(string_) {
if (typeof string_ !== 'string') {
return String(string_);
}
return string_.replaceAll('&', '&amp;').replaceAll('<', '&lt;').replaceAll("'", '&apos;');
}
const { escapeXml } = require('../lib/xml-utils');
function indentFileContent(content) {
if (typeof content !== 'string') {