You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
About a year ago, TOML was modified to accept new lines in in-line tables. See the request and the fix.
The syntax highlighting package for Sublime does not recognize this syntax and will mark in red text in an in-line table if a new line is added, such as this:
# Single line
person = { name = "Tom", geography = { lat = 1.0, lon = 2.0 } }
# Multi line
person = {
name = "Tom",
geography = {
lat = 1.0,
lon = 2.0,
},
}
Could you please add support for it? Thank you
The text was updated successfully, but these errors were encountered:
About a year ago, TOML was modified to accept new lines in in-line tables. See the request and the fix.
The syntax highlighting package for Sublime does not recognize this syntax and will mark in red text in an in-line table if a new line is added, such as this:
Could you please add support for it? Thank you
The text was updated successfully, but these errors were encountered: