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
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 = "mat"; | |
/* Optional folder name such as "Clippings/" */ |
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
Based on <a href="https://www.jstree.com/">jsTree</a>. | |
<hr/> | |
Filter: <input type="text" id="search" /><button id="clear">Clear</button> | |
<div id="jstree"> | |
</div> | |
<p>Selected items:</p> | |
<ul id="output"> | |
</ul> |
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
Co-authored-by: Mat Sachs <[email protected]> | |
Co-authored-by: Linus Phan <[email protected]> | |
Co-authored-by: Jacob Coker <[email protected]> | |
# use the following command to set the local repo commit template | |
# to this file | |
# git config commit.template /absolute/path/to/file(.stCommitMsg) |
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
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
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
/* | |
---------------------------------------- | |
Tantek Celik's Whitespace Reset | |
Author: Tantek Celik, Shane Riley | |
Version: (CC) 2010 Some Rights Reserved - http://creativecommons.org/licenses/by/2.0 | |
Description: Resets default styling of browsers to a common base | |
---------------------------------------- | |
*/ | |
ul, ol { list-style: none; } |