{{video }} gets sent as video%20

I want to embed videos in Logseq. For that I use {{video URL}} syntax, but when I send it to Logseq the text is changed to: video%20URL. How can I change that?

Take a look at this section in the docs.

The double curly braces trigger a URL encoding.

The section immediately after explains how escaping is achieved by using a leading backslash on your braces.

So try

\{{video URL}}
1 Like

Thanks! It works great! In my script I had to write two \ like that: const open = "\{{video "; but it works great! :slight_smile: