Add non-breaking spaces where appropriate

This commit is contained in:
Florine W. Dekker 2021-04-23 14:45:56 +02:00
parent 2e124c0815
commit 45e06510da
Signed by: FWDekker
GPG Key ID: B1B567AF58D6EE0F
3 changed files with 6 additions and 6 deletions

BIN
package-lock.json generated

Binary file not shown.

View File

@ -1,6 +1,6 @@
{
"name": "@fwdekker/template",
"version": "2.1.2",
"version": "2.1.3",
"description": "The base template for pages on fwdekker.com.",
"author": "Felix W. Dekker",
"license": "MIT",
@ -28,14 +28,14 @@
"normalize.css": "^8.0.1"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt": "^1.4.0",
"grunt-cli": "^1.4.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-focus": "^1.0.0",
"grunt-webpack": "^4.0.2",
"webpack": "^5.33.2",
"grunt-webpack": "^4.0.3",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0"
}
}

View File

@ -155,9 +155,9 @@ const footer = function(
version = undefined,
privacyPolicyURL = undefined
}) {
if (author === undefined) author = "F.W. Dekker";
if (author === undefined) author = "F.W. Dekker";
if (authorURL === undefined) authorURL = "https://fwdekker.com/";
if (license === undefined) license = "MIT License";
if (license === undefined) license = "MIT License";
if (licenseURL === undefined && vcsURL !== undefined) licenseURL = `${vcsURL}src/branch/master/LICENSE`;
if (vcs === undefined && vcsURL !== undefined) vcs = "git";
if (privacyPolicyURL === undefined) privacyPolicyURL = "https://fwdekker.com/privacy/";