When I use the double equal sign, dataview will throw an error

When I use the double equal sign, dataview will throw an error.
example:When inserting the text format of the following double equal sign code in a sentence.
The content I originally wrote is as follows:

This is an example, an example of the dataview `==` reporting an error.

But the content displayed by obsidian is like this:

This is an example, an example of the dataview 
Dataview (inline field '=')Error:
--PARSING FAILED-------------------------

>1=
 |^

Expected one of the following:

'(''null',boolean,date,duration,file link,list ('[1,2,3]),negated field,number,object ('a:1,b:2 })string,variable 
reporting an error.

It led to error messages like the code blocks written above that shouldn’t have appeared in the middle of the notes I wrote. I don’t understand why this situation occurred.

Can you show the dataview you are trying to use?

1 Like

The version of dataview I’m using is 0.5.68.
I’m not sure if this is a bug of dataview because I only opened the plugin but did not use it in this document. When I enter a double equal sign in the note document, the following error prompt will appear in the document.
The following are samples of errors:



It should be noted that I have not made any changes to the configuration options of the dataview plugin.
Looking forward to your reply. Thank you.

Hello.

If you write Dataview code with an error in it, you will see an error message.

The default inline-query prefix for Dataview is the equals sign, so if you write a backtick and an equals sign together, you are invoking Dataview. The second equals sign creates an error, which generates the report.

You can either change the default inline-query prefix in the settings for Dataview, or you can escape the line with:

This is an example, an example of the dataview \`\==\` ==not== reporting an error.

This is an example, an example of the dataview `==` ==not== reporting an error.