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
| version: "3.1" | |
| services: | |
| wordpress: | |
| image: wordpress | |
| restart: unless-stopped | |
| ports: | |
| - 8080:80 | |
| environment: | |
| WORDPRESS_DB_HOST: db |
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
| /** | |
| * Convert String to Emoji | |
| * Most emoji's start with � | |
| * If you have these in your SFCC Site Import XML File, you might get an import error. | |
| * | |
| * @usage convertStringToEmoji('��') => ๐ | |
| * @param {String} str Raw URL Encoded String | |
| */ | |
| function convertStringToEmoji(str) { | |
| // Regex matching either a surrogate or a character. |
OlderNewer