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
| #!/usr/bin/env node | |
| /** | |
| * Translate Docusaurus docs to multiple languages using OpenAI-compatible APIs. | |
| * | |
| * Based on the docusaurus-i18n approach but rewritten to support: | |
| * - .md and .mdx files | |
| * - Improved translation prompts that preserve code/MDX syntax | |
| * - Concurrent API calls | |
| * - Multiple sidebar prefixes |
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
| /* | |
| * Original script by Josh Fraser (http://www.onlineaspect.com) | |
| * Continued by Jon Nylander, (jon at pageloom dot com) | |
| * According to both of us, you are absolutely free to do whatever | |
| * you want with this code. | |
| * | |
| * This code is maintained at bitbucket.org as jsTimezoneDetect. | |
| */ | |
| /** |
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
| tests | |
| composer.lock | |
| composer.phar | |
| vendor |
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
| <?php | |
| namespace Symfony\Component\ClassLoader; | |
| /** | |
| * A caching class loader similar to ApcClassLoader | |
| * Creates a symlink for each loaded file so it can be quickly loaded again later | |
| */ | |
| class SymlinkClassLoader |
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
| function empty_list(selector) { | |
| return selector(undefined, undefined, true); | |
| }; | |
| function prepend(el, list) { | |
| return function(selector) { | |
| return selector(el, list, false); | |
| }; | |
| }; |