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.
Помогите добить скрипт для записи данных в гугл таблицы
-
Всем привет столкнулся с проблемой, на node.js совсем ничего не писал, а тут пришлось =) написал скрипт для импорта списка в гугл таблицы,
const { GoogleSpreadsheet } = require('google-spreadsheet'); const creds = require('D:/json-credentional/data-a5cf643caf94.json'); // the file saved above const doc = new GoogleSpreadsheet('sheetid'); await doc.useServiceAccountAuth(creds); await doc.loadInfo(); const sheet = doc.sheetsByIndex[0]; const rows = await sheet.getRows(); const data = [[FILE_CONTENT_DATE]] console.log(data) const sundar = await sheet.addRow(data);И проблема в том что весь список кладется в ячейку, а не в строки, подскажите как разложить все значения списка в строки?
пример списка
2021-10-20
2021-10-20
2021-10-20
2021-10-20
2021-10-20
2021-10-20Заранее спасибо за любую помощь