Skip to content

Commit

Permalink
deploy: fab7c94
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jun 19, 2024
1 parent 6307819 commit 0ac8272
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions print.html
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,12 @@ <h3 id="blacklist"><a class="header" href="#blacklist">Blacklist</a></h3>
.withBlacklistUrl(["/blog", new RegExp("/books").source, "/resume"])
.build();
</code></pre>
<h3 id="whitelist"><a class="header" href="#whitelist">Whitelist</a></h3>
<p>Only crawl set paths, url, or pattern with Regex.</p>
<pre><code class="language-ts">const website = new Website("https://choosealicense.com")
.withWhitelistUrl(["/blog", new RegExp("/books").source, "/resume"])
.build();
</code></pre>
<h3 id="crons"><a class="header" href="#crons">Crons</a></h3>
<p>Setup a cron job that can run at any time in the background using cron-syntax.</p>
<pre><code class="language-ts">const website = new Website("https://choosealicense.com")
Expand Down
2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions website.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ <h3 id="blacklist"><a class="header" href="#blacklist">Blacklist</a></h3>
.withBlacklistUrl(["/blog", new RegExp("/books").source, "/resume"])
.build();
</code></pre>
<h3 id="whitelist"><a class="header" href="#whitelist">Whitelist</a></h3>
<p>Only crawl set paths, url, or pattern with Regex.</p>
<pre><code class="language-ts">const website = new Website("https://choosealicense.com")
.withWhitelistUrl(["/blog", new RegExp("/books").source, "/resume"])
.build();
</code></pre>
<h3 id="crons"><a class="header" href="#crons">Crons</a></h3>
<p>Setup a cron job that can run at any time in the background using cron-syntax.</p>
<pre><code class="language-ts">const website = new Website("https://choosealicense.com")
Expand Down

0 comments on commit 0ac8272

Please sign in to comment.