Initial commit: added Markdown to IHK Chemnitz PDF converter with core structure and features, including YAML config, Goldmark parser, and PDF renderer.

This commit is contained in:
Sebastian Unterschütz
2026-04-09 23:09:45 +02:00
parent ca76fc4a8a
commit e98f7efa52
15 changed files with 1098 additions and 0 deletions

15
config.go Normal file
View File

@@ -0,0 +1,15 @@
package main
type Config struct {
Student struct {
Name string `yaml:"name"`
Profession string `yaml:"profession"`
Company string `yaml:"company"`
Supervisor string `yaml:"supervisor"`
} `yaml:"student"`
Project struct {
Title string `yaml:"title"`
Period string `yaml:"period"`
Subtitle string `yaml:"subtitle"`
} `yaml:"project"`
}