How to disable ::?

remnote will convert :: to flashcard, I don not need flashcard.

Just curious, what do you need double :: for?

I don’t know if there is a better way to do it, but the first thing I can think of is using LaTeX. So you enter the LaTeX environment via $$ and then simly add ::.

Quote formatting `` will also work.

c++ terms will include :: , for example: std::vector . many other programming languages also use :: very often.
remnote should provide a config to disable :: for someone never use flashcard.

In this case you might want to use the code environment. Use \code to insert a code block.

It is not a code block, just a term or word (e.g. std::vector) in sentence.

I see. If the LaTeX or quote workarount are not sufficient, feel free to do a Feature Request. #feedback

You can use /code (codeblock) to disable ::

Example:

// Your First C++ Program

#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}