@@ -24,31 +24,51 @@ const getWindowContent = () => {
24
24
document . querySelectorAll ( "meta[property^='twitter:']" )
25
25
) . map ( getTagTuple ) ;
26
26
27
- console . log ( twitterMetaTags ) ;
28
-
29
27
const getSingleTagHtml = ( [ property , content ] : [ string , string ] ) => {
28
+ let contentTag : HTMLElement | Text ;
30
29
if ( [ "og:image" , "twitter:image" ] . includes ( property ) ) {
31
- content = `<img src="${ content } " />` ;
30
+ contentTag = document . createElement ( "img" ) ;
31
+ contentTag . setAttribute ( "src" , content ) ;
32
+ } else {
33
+ contentTag = document . createTextNode ( content ) ;
32
34
}
33
35
34
- return /* html */ `<dt>${ property } </dt><dd>${ content } </dd>` ;
36
+ const tagHtml = document . createDocumentFragment ( ) ;
37
+
38
+ const propertyName = document . createElement ( "dt" ) ;
39
+ propertyName . textContent = property ;
40
+
41
+ const propertyValue = document . createElement ( "dd" ) ;
42
+ propertyValue . append ( contentTag ) ;
43
+
44
+ tagHtml . append ( propertyName , propertyValue ) ;
45
+
46
+ return tagHtml
35
47
} ;
36
48
37
49
const getTagsHtml = (
38
50
title : string ,
39
51
tags : [ string , string ] [ ] ,
40
52
wrapWithDetails = true
41
53
) => {
42
- const dl = `<dl>${ tags . map ( ( tag ) => getSingleTagHtml ( tag ) ) . join ( "" ) } </dl>` ;
54
+ const dl = document . createElement ( "dl" ) ;
55
+
56
+ for ( const tag of tags ) {
57
+ dl . append ( getSingleTagHtml ( tag ) ) ;
58
+ }
43
59
44
60
if ( ! wrapWithDetails ) {
45
- return dl ;
61
+ return dl . outerHTML ;
46
62
}
47
63
48
- return `<details>
49
- <summary>${ title } </summary>
50
- ${ dl }
51
- </details>` ;
64
+ const details = document . createElement ( "details" ) ;
65
+
66
+ const summary = document . createElement ( "summary" ) ;
67
+ summary . textContent = title ;
68
+
69
+ details . append ( summary , dl ) ;
70
+
71
+ return details . outerHTML ;
52
72
} ;
53
73
54
74
const standardTags = [
0 commit comments