This file contains hidden or 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
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional vault name */ | |
const vault = "Vault"; | |
/* Optional folder name such as "Clippings/" */ |
This file contains hidden or 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
<ul class="navigation"> | |
<li class="navigation__button-wrapper"> | |
<a href="#" class="navigation__button navigation__button_complete">Link</a> | |
</li> | |
<li class="navigation__button-wrapper"> | |
<a href="#" class="navigation__button navigation__button_complete">Link</a> | |
</li> | |
<li class="navigation__button-wrapper"> | |
<span class="navigation__button navigation__button_active">Link</span> | |
</li> |
This file contains hidden or 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
/* 1 */ | |
body {color: red;} | |
p {color: blue;} | |
/* Answer: Текст будет синим, так как p в данном случае более специфичный селектор */ | |
/* 2 */ | |
p {color: red;} | |
.bar {color: blue;} | |
/* Answer: синий, селектор по классу имеет больший вес */ |