A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Trouble with config file, Error Create Config File
-
@Mykle1 Okay I did that, and figured out the problem is my calendar…is there anyway I can fix that?
-
@twosix in all your examples you’re escaping the closing quote
{ symbol: "calendar-check-o ", url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpM3HLxxxxxxxxxxxxxxxxxvZM-3TNpXNgZXsi192SI7M6pxxxxxxxxxxxxxxxxxxxxxxxXZCkcApre7Kg\" }
you can see there that the next line is green which indicates that the string isn’t closed there probably. This happen because of the
\
right in front of the quote character.If the backslash doesn’t belong to your string remove it, if you need the backslash you have to escape the backslash by adding a second. like this:
{ symbol: "calendar-check-o ", url: "webcal://p55-calendars.icloud.com/published/2/TDWYwJjbv2BpM3HLxxxxxxxxxxxxxxxxxvZM-3TNpXNgZXsi192SI7M6pxxxxxxxxxxxxxxxxxxxxxxxXZCkcApre7Kg\\" }
here you can see that the closing curly brace is no longer highlighted in green because the string is closed properly.