mirror of
https://github.com/anotherlusitano/SpectrumPlus.git
synced 2026-07-22 04:10:27 +00:00
Merge pull request #6 from anotherlusitano/fix-highlighted-text-not-showing
Fix highlighted text not showing
This commit is contained in:
commit
dc2f021b3f
3 changed files with 10 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Reference in a new issue