The Importer supports text with links, bold, italics, strikethrough, and other text formatting. However, when using formulas in the spreadsheet, you need to use some special markdown.
For example, let's say that cell J3 contains October 15, 2025, and you want a task to read:
Set the date to October 15, 2025
To do that, your task's formula would be:
="Set the date to " & $J$3
However, that would leave "date" and "October 15, 2025" unbolded such that it would look like this:
Set the date to October 15, 2025
To add the bold parts, you’d use markdown in this way:
="Set the **date** to **" & $J$3 & "**"
This text is **bold** ➡️ This text is bold
This text is *italicized* ➡️ This text is italicized
This text is [linked](www.google.com) ➡️ This text is linked
This is [a **bold** link](www.google.com) ➡️ This is a bold link