It is thought that …
It is believed that …
It has been reported that …
It is a widely held view that …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Ross Keenan", | |
"label": "Senior Developer @ ReturnX", | |
"// NOTE": "The elegant theme doesn't correctly show the image: https://github.com/mudassir0909/jsonresume-theme-elegant/issues/158", | |
"image": "https://media.licdn.com/dms/image/D4E03AQEoz924ct8l_g/profile-displayphoto-shrink_800_800/0/1696243346574?e=1713398400&v=beta&t=Km5-oCH8p4FKiU6I8oXAo2i82gU06v9wt5Wx5kQ3YTE", | |
"email": "[email protected]", | |
"summary": "Accomplished Fullstack Developer | Spearheading Development of Production-Grade Web Apps", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log('inserted') | |
document.querySelector('img').addEventListener('click', () => console.log('clicked')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%* | |
const files = await app.vault.getMarkdownFiles(); | |
const fileDataArr = await files.map(file => { | |
if (app.metadataCache.getFileCache(file).links) { | |
const noHeaderLinks = app.metadataCache.getFileCache(file).links | |
.map(item => item.link.replace(/#.+/g, '')); | |
return [file.basename, noHeaderLinks]; | |
} else { | |
return [file.basename, []]; |