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
/******************************************************************************* | |
Excel Date Dimension Module | |
© 2025 Justin S. Williams <https://github.com/justfoo> | |
This work is marked CC0 1.0 Universal. To view a copy of this mark, | |
visit https://creativecommons.org/publicdomain/zero/1.0/ | |
You can copy, modify, distribute, and use this code, even for | |
commercial purposes, without needing to ask for permission. |
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
/******************************************************************************* | |
Excel Base Module Helper Functions | |
© 2025 Justin S. Williams <https://github.com/justfoo> | |
This work is marked CC0 1.0 Universal. To view a copy of this mark, | |
visit https://creativecommons.org/publicdomain/zero/1.0/ | |
You can copy, modify, distribute, and use this code, even for | |
commercial purposes, without needing to ask for permission. |
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
/** | |
* Customize color labels of reader | |
* @author windingwind | |
* @usage Set the `Event` to `Program Startup`; Edit the action script below to replace the labels. | |
* @link https://github.com/windingwind/zotero-actions-tags/discussions/211 | |
* @see https://github.com/windingwind/zotero-actions-tags/discussions/211 | |
*/ | |
// Edit labels below | |
const replaceLabelMap = { |
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
/******************************************************************************* | |
EXCEL HELPER FUNCTIONS | |
Common functions to help manipulating data in Ecel | |
VARIABLE OVERRIDES | |
The following optional variables can be defined within a worksheet. If they are | |
defined, the functions below will use them. However if the variable definitions | |
are omitted, then the functions will use default values instead. | |
o Override_AsOfYear (named cell) - generally the year that represents 'now' for |
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
// GROCY HELPER FUNCTIONS | |
// Functions for working with data imported from a Grocy instance | |
// Expected Module Name: gr | |
// Expects a worksheet with the following names defined: | |
// - grBaseUrl | |
// - grApiKey | |
// - grApiBaseUrl | |
// - grApiProductUrl |