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:
15
config.go
Normal file
15
config.go
Normal 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"`
|
||||
}
|
||||
Reference in New Issue
Block a user