rayes0 / dotfiles

dotfiles for bash, neovim, tmux, widgets, and more
74 stars 0 forks source link

Quotes not escaped in calendar #3

Closed GideonWolfe closed 3 years ago

GideonWolfe commented 3 years ago

I'm implementing your calendar, and I seem to be getting the raw &quot from the eww.xml file

image

Removing the " shows the quote without the ", but I'm not sure why it's happening in the first place, since it should just insert a ".

rayes0 commented 3 years ago

This is a known issue with roxml in eww. As a temporary fix, use an eww version before this commit, so use this version. My configs will work with those as they don't use any of the newer features of eww.

XML and GTK are both bad with double quotes to begin with. Eww is planning on upgrading the syntax of their config, which should fix this. Until then, there's really nothing to be done except use an older version (unfortunately).

You could of course opt for just not using the double quotes, and still use newer versions of eww if you wish.

GideonWolfe commented 3 years ago

Ah gotcha. I'll probably just remove the quotes then. I would have never figured that out on my own, thanks!