why bootstrapcss not apply of coverTemplate?
.net core
var pdf = await JsReportMVCService.RenderAsync(new RenderRequest
{
Template = new Template()
{
Content = result,
Engine = Engine.Handlebars,
Recipe = Recipe.ChromePdf,
PdfOperations = new List<PdfOperation>()
{
new PdfOperation()
{
Template = new Template
{
Engine = Engine.Handlebars,
Recipe = Recipe.ChromePdf,
Content = cover,
},
Type = PdfOperationType.Prepend
}
}
},
There is a bootstrap link in the content
<head>
<link href="/lib/bootstrap/dist/css/bootstrap.css" rel="stylesheet" />
</head>
Bootstrap is applied to pages included in the content, but templates applied with Type = PdfOperationType.Prepend are not applied.