{decodeURIComponent(ref.dimension)}
+ )} ++ {ref.clicks} ({ref.percentage}) +
+
+
+ {code.split("\n").map((line, i) => (
+
+ {/* Line number */}
+
+ {i + 1}
+
+ {/* Code content */}
+
+ {line
+ .replace(
+ /function/,
+ (match) => `${match}`,
+ )
+ .replace(
+ /"[^"]*"/,
+ (match) => `${match}`,
+ )
+ .replace(
+ /console/,
+ (match) => `${match}`,
+ )}
+
+
+ ))}
+
+
+ {desc}
+