Hello,

Today, I noticed another, but related, fontification issue with triple-quoted strings in TOML. Strings starting with # is interpreted as comment inside the triple-quoted strings too.

Here's an example:

favicon_code = """
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
"""
It looks like this:

image.png


--

Kaushal Modi