Skip to main content

Clipboard Content

Inserts the current content of the clipboard.

This placeholder supports only plain text and images.

Images are supported only within Rich Text template.

iOS Compatibility

On iOS images are not supported. Only plain text is inserted.

Parameters

None

Syntax

{@clipboard@}

Notes

If you want to expand the snippet into a Rich Text document preserving the formatting from the current cursor position, use the Paste & Match Style (available when you right-click on the snippet).

Use Cases

This placeholder is useful when you want to insert the current clipboard content into the snippet and add some additional text or formatting around it.

Example 1

You often review documents and send messages asking to correct specific parts.

You could create a snippet that inserts the current clipboard content and adds the following text:

Please correct the following part:

{@clipboard@}

This way you can quickly copy the part that needs to be corrected and create appropriate message.

Example 2

You need a snippet that creates a HTML image tag with an image from the clipboard. You could use the following snippet:

<img
src="https://some-website.com/images/{@clipboard@}.png"
alt="{@clipboard@}"
/>

Assuming that the clipboard contains the image name screenshot-1, the snippet will expand to:

<img
src="https://some-website.com/images/screenshot-1.png"
alt="screenshot-1"
/>