Spaces:
Running
Running
url_types = { | |
"Student Publications": [ | |
"studentpulse.com", | |
"undergraduateresearch.ucsd.edu", | |
"jmurj.jmu.edu", | |
"cur.org", | |
"urj.ucf.edu", | |
"ugresearch.umn.edu", | |
"undergraduateresearch.wustl.edu", | |
"ugresearch.ucla.edu", | |
"jur.byu.edu", | |
"undergradresearch.ncsu.edu", | |
], | |
"Wikihost": [ | |
"fandom.com", | |
"wikidot.com", | |
"wikia.org", | |
"wikispaces.com", | |
"gamepedia.com", | |
"wikibooks.org", | |
"wikiversity.org", | |
"wikitravel.org", | |
"wikinews.org", | |
"wiktionary.org", | |
"wikipedia.org", | |
], | |
"Official News": [ | |
"bbc.com", | |
"cnn.com", | |
"nytimes.com", | |
"reuters.com", | |
"theguardian.com", | |
"washingtonpost.com", | |
"foxnews.com", | |
"aljazeera.com", | |
"bloomberg.com", | |
"npr.org", | |
], | |
"Online Learning": [ | |
"coursera.org", | |
"edx.org", | |
"udacity.com", | |
"udemy.com", | |
"khanacademy.org", | |
"futurelearn.com", | |
"skillshare.com", | |
"linkedin.com/learning", | |
"pluralsight.com", | |
"codecademy.com", | |
], | |
"Government Official": [ | |
"usa.gov", | |
"gov.uk", | |
"europa.eu", | |
"canada.ca", | |
"australia.gov.au", | |
"india.gov.in", | |
"japan.go.jp", | |
"korea.go.kr", | |
"gov.sg", | |
"nz.govt.nz", | |
"defense.gov", | |
".gov", | |
], | |
"Publications": [ | |
"scholar.google.com", | |
"pubmed.ncbi.nlm.nih.gov", | |
"researchgate.net", | |
"jstor.org", | |
"ieeexplore.ieee.org", | |
"sciencedirect.com", | |
"arxiv.org", | |
"link.springer.com", | |
"onlinelibrary.wiley.com", | |
"doaj.org", | |
"journals.plos.org/plosone", | |
"journals.sagepub.com", | |
"dl.acm.org", | |
"biorxiv.org", | |
"tandfonline.com", | |
], | |
} | |
plag_script = """ | |
async () => { | |
globalThis.toggleDetails = (event) => { | |
event.preventDefault(); // Prevent the default link behavior | |
let detailsContainer = document.getElementById("detailsContainer"); | |
if (detailsContainer.style.display === "none") { | |
detailsContainer.style.display = "block"; | |
} else { | |
detailsContainer.style.display = "none"; | |
} | |
} | |
} | |
""" |