You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/sim/blocks/blocks/google_docs.ts
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,15 @@ Return ONLY the document content - no explanations, no extra text.`,
155
155
placeholder: 'Describe the document content you want to create...',
156
156
},
157
157
},
158
+
// Markdown formatting toggle for create operation
159
+
{
160
+
id: 'markdown',
161
+
title: 'Interpret content as Markdown',
162
+
type: 'switch',
163
+
condition: {field: 'operation',value: 'create'},
164
+
description:
165
+
'Convert headings, bold/italic, lists, tables, links, code, and blockquotes into formatted Google Docs content. When off, content is inserted as plain text.',
description: 'The ID of the folder to create the document in (internal use)',
48
76
},
77
+
markdown: {
78
+
type: 'boolean',
79
+
required: false,
80
+
visibility: 'user-or-llm',
81
+
description:
82
+
'When true, content is interpreted as Markdown and converted to formatted Google Docs content (headings, bold/italic, lists, tables, links, code blocks, blockquotes). Default: false (content inserted as plain text).',
description: 'Write or update content in a Google Docs document',
7
+
description:
8
+
'Append content to a Google Docs document. Content is inserted literally; Markdown is not interpreted. For formatted output from Markdown, use the Create operation with the markdown toggle enabled.',
0 commit comments