summaryrefslogtreecommitdiff
path: root/load_spreadsheet.js
diff options
context:
space:
mode:
Diffstat (limited to 'load_spreadsheet.js')
-rw-r--r--load_spreadsheet.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/load_spreadsheet.js b/load_spreadsheet.js
index e8fdd03..0398b18 100644
--- a/load_spreadsheet.js
+++ b/load_spreadsheet.js
@@ -226,6 +226,11 @@ function getClipValue(clip) {
} else if (clip.style.underline) {
value = "<u>" + value + "</u>";
}
+ value = value.replace(
+ "https://zora.co/",
+ "<a href='https://zora.co/'>https://zora.co/</a>"
+ );
+ value = value.replace("ZORA", "<a href='https://zora.co/'>ZORA</a>");
return value;
}