Merge pull request #6 from anotherlusitano/fix-highlighted-text-not-showing

Fix highlighted text not showing
This commit is contained in:
João Ribeiro 2026-06-17 22:27:59 +01:00 committed by GitHub
commit dc2f021b3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 1 deletions

View file

@ -19,3 +19,7 @@ mark .cm-em,
mark em {
color: rgb(138, 19, 112);
}
.community-item .suggestion-highlight {
background-color: rgba(255, 208, 0, 0.4);
}

View file

@ -23,6 +23,11 @@ function createSnippetArray () {
})
}
if (process.env.TESTING_VAULT_PATH === undefined) {
console.error("TESTING_VAULT_PATH is not set in the environment variables.");
process.exit(1);
}
const testingVaultPath = path.join(
process.env.TESTING_VAULT_PATH,
".obsidian",

File diff suppressed because one or more lines are too long