Work around page breaking issue

This commit is contained in:
2023-08-12 22:53:28 +02:00
parent 0ea77656e3
commit 244de52b19
3 changed files with 50 additions and 14 deletions

View File

@ -11,6 +11,7 @@ namespace Elwig.Documents {
public Document(string title) {
var c = App.Client;
DataPath = App.DataPath;
CurrentNextSeason = Utils.CurrentNextSeason;
Title = title;
Header = $"<h1>{c.Name}</h1>";
Footer = $"{c.NameFull}<br/>" +
@ -32,6 +33,7 @@ namespace Elwig.Documents {
}
public string DataPath { get; set; }
public int CurrentNextSeason { get; set; }
public string Title { get; set; }
public string Header { get; set; }
public string Footer { get; set; }