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
<p data-mce-fragment="1" data-sanitized-data-mce-fragment="1"><i data-mce-fragment="1" data-sanitized-data-mce-fragment="1">[ENTER_CATCHPHRASE_HERE]</i></p> | |
<p data-mce-fragment="1" data-sanitized-data-mce-fragment="1">This outrageous hoodie features an eye-catching and provocative design that'll make you stand out from the crowd. Wear it to the gym and club (or not).<br data-mce-fragment="1" data-sanitized-data-mce-fragment="1"></p> | |
<p data-mce-fragment="1" data-sanitized-data-mce-fragment="1"><strong data-mce-fragment="1" data-sanitized-data-mce-fragment="1">Composition</strong>: 100% Cotton (320 GSM)<br data-mce-fragment="1" data-sanitized-data-mce-fragment="1"><strong data-mce-fragment="1" data-sanitized-data-mce-fragment="1">GSM</strong>: 320<br data-mce-fragment="1" data-sanitized-data-mce-fragment="1"><strong data-mce-fragment="1" data-sanitized-data-mce-fragment="1">Wash care:<br data-mce-fragment="1" data-sanitized-data-mce-fragment="1"></strong></p> | |
<ul data-mce-fragment="1" data-sanitized-data |
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
"todohighlight.keywords": [ | |
{ | |
"text": "NOTE:", | |
"color": "#F4EDED", | |
"backgroundColor": "#36827F", | |
}, | |
{ | |
"text": "TEMP:", | |
"color": "#172A3A", | |
"backgroundColor": "#53D8FB", |
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
const getInstagramHeaders = async () => { | |
const options = { | |
method: 'GET', | |
credentials: 'same-origin', | |
} | |
const response = await fetch('https://www.instagram.com/a.thousand.apologies/', options) | |
const parser = new DOMParser() | |
const html = await response.text() | |
const document = parser.parseFromString(html, 'text/html') | |
return { |