script.io.js 2026.126.106 → 2026.126.2027
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/node_packages/html.js +17 -27
- package/package.json +1 -1
package/node_packages/html.js
CHANGED
|
@@ -70,7 +70,6 @@ Define (Function, "html", class {
|
|
|
70
70
|
constructor () {
|
|
71
71
|
this.populated = false;
|
|
72
72
|
this.head = new Function.html.head (this);
|
|
73
|
-
this.config = {}
|
|
74
73
|
this.var = {
|
|
75
74
|
"html:attribute": {},
|
|
76
75
|
title: "UnTitled",
|
|
@@ -129,9 +128,9 @@ Define (Function, "html", class {
|
|
|
129
128
|
for (var i in this.var.meta) this.head.meta (this.var.meta [i].attribute, this.var.meta [i].prop);
|
|
130
129
|
this.head.link ({rel: "icon", href: this.var ["favorite.ico"] || "/favicon.ico"});
|
|
131
130
|
this.head.link ({rel: "canonical", href: this.var.canonical || "/"});
|
|
132
|
-
if (this.
|
|
133
|
-
if (this.
|
|
134
|
-
if (this.
|
|
131
|
+
if (this.var ["manifest.json"]) this.head.link ({rel: "manifest", href: this.var ["manifest.json"] || "/manifest.json"});
|
|
132
|
+
if (this.var ["feed.xml"]) this.head.link ({rel: "alternate", href: "/feed/", type: "application/rss+xml", title: "{{ site:name }} » Feed"});
|
|
133
|
+
if (this.var ["feed.xml:atom"]) this.head.link ({rel: "alternate", href: "/feed/atom/", type: "application/rss+xml", title: "{{ site:name }} » Feed (Atom)"});
|
|
135
134
|
this.head.link ({rel: "dns-prefetch", href: "https://www.google-analytics.com"});
|
|
136
135
|
this.head.link ({rel: "dns-prefetch", href: "https://www.googletagmanager.com"});
|
|
137
136
|
this.head.link ({rel: "preconnect", href: "https://fonts.gstatic.com"}, "crossorigin");
|
|
@@ -162,7 +161,7 @@ Define (Function, "html", class {
|
|
|
162
161
|
}
|
|
163
162
|
render (body) {
|
|
164
163
|
if (this.populated) {}
|
|
165
|
-
else this.populate (
|
|
164
|
+
else this.populate ();
|
|
166
165
|
this.markup = new Function.html.markup (`<!DOCTYPE html>`);
|
|
167
166
|
this.markup.push (0, `<html${Function.html.attribute (this.var ["html:attribute"], {space: true})}>`);
|
|
168
167
|
this.markup.push (1, `<head>`);
|
|
@@ -194,18 +193,19 @@ Define (Function, "html", class {
|
|
|
194
193
|
});
|
|
195
194
|
|
|
196
195
|
Define (Function.html, "template", function () {});
|
|
197
|
-
Define (Function.html.template, "default",
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
<
|
|
206
|
-
</
|
|
207
|
-
`);
|
|
208
|
-
|
|
196
|
+
Define (Function.html.template, "default", function (data = {}) {
|
|
197
|
+
var markup = [];
|
|
198
|
+
markup.push (`<div id="app">`);
|
|
199
|
+
markup.push (` <div application>`);
|
|
200
|
+
for (var i in data.heading) {
|
|
201
|
+
var n = parseInt (i) + 1;
|
|
202
|
+
markup.push (` <h${n}>${data.heading [i]}</h${n}>`);
|
|
203
|
+
}
|
|
204
|
+
markup.push (` <date>${data.date}</date>`);
|
|
205
|
+
markup.push (` <p>${data.description}</p>`);
|
|
206
|
+
markup.push (` </div>`);
|
|
207
|
+
markup.push (`</div>`);
|
|
208
|
+
return Function.markup.render (markup);
|
|
209
209
|
});
|
|
210
210
|
|
|
211
211
|
Define (Function.html, "head", class {
|
|
@@ -268,13 +268,3 @@ Symbol.export.html = Function.html;
|
|
|
268
268
|
*
|
|
269
269
|
* xxx://xxx.xxx.xxx/xxx
|
|
270
270
|
*/
|
|
271
|
-
|
|
272
|
-
/*
|
|
273
|
-
<script type="application/ld+json">
|
|
274
|
-
{"@context": "https://schema.org", "@type": "WebPage", "name": "{{ site:name }}", "alternateName": "{{ site:alternate-name }}", "description": "{{ meta:description }}", "url": "{{ canonical }}"}
|
|
275
|
-
</script>
|
|
276
|
-
|
|
277
|
-
<script type="application/ld+json">
|
|
278
|
-
{"@context": "https://schema.org/", "@graph": [{"@type": "website", "@id": "{{ canonical }}", "name": "{{ site:name }}", "url": "{{ canonical }}", "description": ""{{ meta:description }}}]}
|
|
279
|
-
</script>
|
|
280
|
-
*/
|
package/package.json
CHANGED