MaxMelcher / AzureDevOps.WikiPDFExport

Export Azure DevOps Wiki to PDF
MIT License
186 stars 62 forks source link

Body element missing from rendered HTML #122

Closed Zhaph closed 1 year ago

Zhaph commented 1 year ago

Possibly related to #114 I found that I was unable to apply a global style to the output as there was no <body> element in the mark up.

Suggest updating the generated HTML to:

//build the html for rendering
html = $"{htmlStart}{headStart}{string.Concat(header)}{headEnd}<body>{html}<footer>{string.Concat(footer)}</footer></body>{htmlEnd}";