Skip to content

Commit b5659fb

Browse files
committed
Update docs
1 parent 14728fe commit b5659fb

File tree

7 files changed

+0
-28
lines changed

7 files changed

+0
-28
lines changed

docs/src/_includes/head.njk

-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,2 @@
1-
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9224018205432249" crossorigin="anonymous"></script>
2-
<script async src="https://www.googletagmanager.com/gtag/js?id=G-873B7M42VH"></script>
3-
<script>
4-
window.dataLayer = window.dataLayer || [];
5-
function gtag(){dataLayer.push(arguments);}
6-
gtag('js', new Date());
7-
gtag('config', 'G-873B7M42VH');
8-
</script>
91
<script async src="https://track.webpulseanalytics.com/client/653eb150048754e8b13f076e" type="module"></script>
102
<link href="css/custom.css" rel="stylesheet">

docs/src/_includes/multiplex.njk

-10
This file was deleted.

docs/src/installation.md

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ Croner can be installed using your preferred package manager or CDN. After insta
1212
> If you are migrating from a different library such as `cron` or `node-cron`, or upgrading from an older version of croner, see the [Migration Guide](migration.md).
1313
{ .note }
1414

15-
{% include multiplex.html %}
16-
1715
### Importing with Node.js or Bun
1816

1917
For Node.js or Bun, you can use ESM Import or CommonJS Require:

docs/src/migration.md

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ nav_order: 4
99

1010
<!-- TOC -->
1111

12-
{% include multiplex.html %}
13-
1412
## Upgrading Croner
1513

1614
This section covers upgrading to Croner from previous versions. Croner follows the Semantic Versioning (SemVer) standard. Be mindful that major updates may cause breaking changes.

docs/src/usage/basics.md

-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ job.schedule(job, /* optional */ context) => {});
2929

3030
The job will be scheduled to run at the next matching time unless you supply the option `{ paused: true }`. The `Cron(...)` constructor will return a Cron instance, later referred to as `job`, which have a few methods and properties.
3131

32-
{% include multiplex.html %}
33-
3432
## Status
3533

3634
Check the status of the job using the following methods:

docs/src/usage/examples.md

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ nav_order: 3
1010

1111
<!-- TOC -->
1212

13-
{% include multiplex.html %}
14-
1513
### Find dates
1614

1715
```ts

docs/src/usage/pattern.md

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ nav_order: 2
88

99
---
1010

11-
{% include multiplex.html %}
12-
1311
The expressions used by Croner are very similar to those of Vixie Cron, but with a few additions and changes as outlined below:
1412

1513
```ts

0 commit comments

Comments
 (0)