-
-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import type { JQueryTerminal } from 'jquery.terminal'; | ||
|
||
import cal from 'ascii-calendar'; | ||
|
||
function calendar(callback: (day: string) => string) { | ||
var today = new Date().getDate(); | ||
var padded_day = today.toString().padStart(2, ' '); | ||
// regex that match day but not inside the year | ||
var re = new RegExp(`(?<!20)(${padded_day})`); | ||
return cal().replace(re, function(_, g) { | ||
return callback(g); | ||
}) | ||
} | ||
|
||
export default function jargon(this: JQueryTerminal) { | ||
return calendar(function(day: string) { | ||
return `[[;#000;#ccc;;]${day}]`; | ||
}); | ||
}; |
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
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