From 40de80ad9abf7833874f1ec7488ae659949011db Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Sun, 6 Oct 2024 20:46:06 +0000 Subject: [PATCH] feat: PSJekyll.Template.IncludeGoogleFont ( Fixes #59 ) Adding style tag --- PSJekyll.types.ps1xml | 1 + 1 file changed, 1 insertion(+) diff --git a/PSJekyll.types.ps1xml b/PSJekyll.types.ps1xml index 753c506..92c2261 100644 --- a/PSJekyll.types.ps1xml +++ b/PSJekyll.types.ps1xml @@ -1185,6 +1185,7 @@ if ($FontName) { @( "{% if site.googleFont %}" "<link href='https://fonts.googleapis.com/css?family={{site.googleFont}}' rel='stylesheet'>" + "<style type='text/css'>font-family: {{site.googleFont}};</style>" "{% endif %}" ) -join [Environment]::Newline }