spec-up-t 1.0.56 → 1.0.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -295,6 +295,8 @@ module.exports = function (options = {}) {
295
295
 
296
296
  const templateInterpolated = interpolate(template, {
297
297
  title: spec.title,
298
+ description: spec.description,
299
+ author: spec.author,
298
300
  toc: toc,
299
301
  render: render,
300
302
  assetsHead: assets.head,
@@ -304,6 +306,7 @@ module.exports = function (options = {}) {
304
306
  externalReferences: JSON.stringify(externalReferences),
305
307
  xrefsData: xrefsData,
306
308
  specLogo: spec.logo,
309
+ specFavicon: spec.favicon,
307
310
  specLogoLink: spec.logo_link,
308
311
  spec: JSON.stringify(spec)
309
312
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-up-t",
3
- "version": "1.0.56",
3
+ "version": "1.0.58",
4
4
  "description": "Technical specification drafting tool that generates rich specification documents from markdown. Forked from https://github.com/decentralized-identity/spec-up by Daniel Buchner (https://github.com/csuwildcat)",
5
5
  "main": "./index",
6
6
  "repository": {
@@ -3,11 +3,12 @@
3
3
 
4
4
  <head>
5
5
  <meta charset="utf-8">
6
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
6
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8
-
7
+ <meta name="generator" content="Spec-Up-T" />
9
8
  <title>${title}</title>
10
-
9
+ <meta name="description" content="${description}">
10
+ <meta name="author" content="${author}">
11
+ <link rel="icon" href="${specFavicon}" type="image/x-icon">
11
12
  <link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300;400&display=swap" rel="stylesheet">
12
13
 
13
14
  ${assetsHead}