update workflow (table structure)

Signed-off-by: FTCHD <144691102+FTCHD@users.noreply.github.com>
This commit is contained in:
FTCHD
2025-11-01 22:55:31 +01:00
parent 0f9ba73865
commit 574edb62b7
4 changed files with 46 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import { readFileSync } from 'node:fs'
import { dirname, join } from 'node:path'
import { fileURLToPath } from 'node:url'
const __filename = fileURLToPath(import.meta.url)
const __dirname = dirname(__filename)
const releaseMdPath = join(__dirname, '..', 'release.md')
const content = readFileSync(releaseMdPath, 'utf-8')
const escaped = content.replace(/\\/g, '\\\\').replace(/"/g, '\\"').replace(/\n/g, '\\n')
console.log(escaped)