From 91d519cbdc25de8509f254334401ae7fc6ed9c4c Mon Sep 17 00:00:00 2001 From: StartAutomating Date: Wed, 9 Oct 2024 03:17:42 +0000 Subject: [PATCH] docs: PSJekyll.Template.IncludeGoogleFont ( Fixes #59 ) Renaming and allowing page fonts --- .../Template/Include/GoogleFont/html.md | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/PSJekyll/Template/Include/GoogleFont/html.md diff --git a/docs/PSJekyll/Template/Include/GoogleFont/html.md b/docs/PSJekyll/Template/Include/GoogleFont/html.md new file mode 100644 index 0000000..9bc3248 --- /dev/null +++ b/docs/PSJekyll/Template/Include/GoogleFont/html.md @@ -0,0 +1,37 @@ +PSJekyll.Template.Include.GoogleFont.html() +------------------------------------------- + +### Synopsis +Includes a Google Font. + +--- + +### Description + +Includes a Google Font in the site. + +This will add a link to the Google Font. + +It can be located within the site or page front matter. + +--- + +### Parameters +#### **FontName** +The name of the font to include. +If no value is directly provided, it will attempt to find a value in site.googleFont. +If no font is found, it will default to Roboto. + +|Type |Required|Position|PipelineInput| +|----------|--------|--------|-------------| +|`[String]`|false |1 |false | + +#### **CodeFont** +The code font to include. +If no code font is provided, it will default to Roboto Mono. + +|Type |Required|Position|PipelineInput| +|----------|--------|--------|-------------| +|`[String]`|false |2 |false | + +---