Try using "Template" action and construct your text with hyerlinks than paste it to page.
Other option is to create simple LOCAL html page somewhere on your hard disk with
desired text and links, than open that local html page in another tab in BAS and than copy
from that tab to the tab where you are working.
api в post запросе
-
Подскажите пожалуйста, как прописать в post запросе такое:
for domain in $(cat domains.txt); do \ curl -X POST -H "X-Auth-Key: $CF_API_KEY" -H "X-Auth-Email: $CF_API_EMAIL" \ -H "Content-Type: application/json" \ "https://api.cloudflare.com/client/v4/zones" \ --data '{"name":"'$domain'","jump_start":true}'; doneКак понимаю "X-Auth-Key: $CF_API_KEY" "X-Auth-Email: $CF_API_EMAIL" - это в заголовках, а последнюю строку {"name":"'$domain'","jump_start":true} куда и как прописать?
