add a line return

This commit is contained in:
Xaloc 2022-09-23 16:03:30 +02:00
parent 22a70dc0a2
commit ffdf88daae
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ html.write("\t<script src='script.js'></script>\n</body>\n</html>")
html.close()
script = open("script.js", "w")
script.write("class link{\n\tconstructor(url){\n\t\tthis.url= url;\n\t}\n\tshow(){\n\t\tvar win=window.open(this.url, '_blank');\n\t\twin.focus();\n\t}\n}")
script.write("class link{\n\tconstructor(url){\n\t\tthis.url= url;\n\t}\n\tshow(){\n\t\tvar win=window.open(this.url, '_blank');\n\t\twin.focus();\n\t}\n}\n")
for i,x in linksDF.iterrows():
script.write(f"var {x['name'].replace(' ','').lower()} = new link('{x['link']}')\n")
script.close()

View File

@ -6,6 +6,7 @@ class link{
var win=window.open(this.url, '_blank');
win.focus();
}
}var firstlink = new link('https://git.xaloc.space')
}
var firstlink = new link('https://git.xaloc.space')
var secondlink = new link('https://fsf.org')
var thirdlink = new link('https://fedi.cat')