Skip to content

Output

Output 对象

Output 对象支持输出文本格式或者 Markdwon 格式的内容

Text
const table = base.getActiveTable();
output.text(table.name);
Markdown
const table = base.getActiveTable()
output.markdown(`##### ${table.name}`);