Merge commit 'ad273dbe5dba7bd0e901270464e25fc1f030a5b5' as 'backend/goldmark'

This commit is contained in:
2026-05-24 09:40:13 +02:00
109 changed files with 54777 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
package main
import (
"fmt"
"os"
)
func main() {
var args []string
cmd := "-h"
if len(os.Args) > 1 {
cmd = os.Args[1]
}
if len(os.Args) > 2 {
args = os.Args[2:]
}
switch cmd {
case "oss-fuzz-corpus":
ossFuzzCorpusSubCommand(args)
case "unicode-case-folding-map":
unicodeCaseFoldingMapSubCommand(args)
case "emb-structs":
embStructsSubCommand(args)
case "-h":
fallthrough
default:
fmt.Fprintf(os.Stderr, `Usage: _tools <subcommand> [options]
subcommands:
oss-fuzz-corpus
unicode-case-folding-map
emb-structs
`)
os.Exit(1)
}
}
func usage(u func(), err error) {
u()
if err != nil {
fmt.Fprint(os.Stderr, err)
}
os.Exit(1)
}