Triple backticks in code block?

Hi,

is it possible to use triple backticks as part of a code block? I am a Splunker and I would like to use some Splunk SPL code snippets in Logseq.
In SPL comments can be used inside triple backticks (```). This of course will mess with logseq’s code blocks.
Does anyone know how I can use this character sequence inside a code block, without it breaks the code block as such?

You can proceed it with \ unfortunately the backslash renders as well :frowning:

Try using org mode syntax (it works in markdown mode too), so enclose your backticks like this

#+BEGIN_SRC
Put triple backticks here 
Code
Put triple backticks here 
#+END_SRC
1 Like

The suggested way works. But if you copy-paste it, make sure to remove the * characters around the first and last line.