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.
как вивести названия переменной в лог?
-
@selector said in как вивести названия переменной в лог?:
посоветуйте как вивести в лог список пустих переменних " ", а именно их названия
@support said in Получить список всех созданных переменных, отладка:
@out Все переменные и их значения можно получить выполнив
var AllVariablesTable = Object.keys(this) .filter(function(e){return e.indexOf("VAR_") == 0}) .reduce(function(all,one){ try { all[one.slice(4)] = eval(one) }catch(e) { all[one.slice(4)] = "undefined" } return all; },{}) log(JSON.stringify(AllVariablesTable))