Home > Software engineering >  Change Google Forms "Rich Text Formatting" by apps script
Change Google Forms "Rich Text Formatting" by apps script

Time:08-25

Google added Rich text formatting to Google Forms titles and descriptions last month, but when I use Apps Script to create forms titles, I can't get any changes except "\n". Would anyone be able to help me?

let questionHeader = form.addSectionHeaderItem();
questionHeader.setTitle("<b>" question "</b>\n" "\b" question "\b0"); //test html format and test rtf format

enter image description here

CodePudding user response:

UPDATE

As what enter image description here

  • Related