I have been using SB for a short time and I would like to know if it’s possible to show accents, cedillas and diacritics in query results. Every time I try to use I got the error in parsing.
Hi Charlys, I also had a similar problem, and found there’s an issue on GitHub that may be related to your error: bug: queries don't seem support non-ascii chars · Issue #957 · silverbulletmd/silverbullet · GitHub
My attempt at fixing that one wasn’t succesful, but if you post some screenshots or paste parts of your notes, maybe we get some solution, or at least more info
Hello, sorry for the late reply, I can attach a print of the error and the query I am trying to use.
pessoas
where affiliation = "Enterprise_Name"
select name as Nome, occupation as Profissão, role as Cargo
I think I made it work, if you refer to Query Language there is one detail that I had to change:
(…) give them a name, even one containing spaces using the backtick identifier syntax
Try this:
```query
pessoas
where affiliation = "Enterprise_Name"
select name as `Nome`, occupation as `Profissão`, role as `Cargo`
```