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.
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:
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.