[chore]: Update syntax

Harmonizing the syntax files
Now inline comment are a single string instead of a table of strings.

-(language_c): Removed whitespaces breaking indent
-(language_html): Removed trailing whitespace
This commit is contained in:
NCarrezDev
2022-07-06 10:15:44 +02:00
parent e646f2fb28
commit 030dcc1e62
8 changed files with 14 additions and 14 deletions
+5 -5
View File
@@ -51,7 +51,7 @@ syntax.add {
type = { "function", "number", "function" }
},
{
pattern = "^%s*%[%^?()["..in_squares_match.."]+()%]:%s+.+\n",
pattern = "^%s*%[%^?()["..in_squares_match.."]+()%]:%s+.+$",
type = { "function", "number", "function" }
},
-- optimization
@@ -154,9 +154,9 @@ syntax.add {
-- highlight
{ pattern = { "==", "==" }, type = "literal" },
-- lines
{ pattern = "^%-%-%-+\n", type = "comment" },
{ pattern = "^%*%*%*+\n", type = "comment" },
{ pattern = "^___+\n", type = "comment" },
{ pattern = "^%-%-%-+$" , type = "comment" },
{ pattern = "^%*%*%*+$", type = "comment" },
{ pattern = "^___+$", type = "comment" },
-- bold and italic
{ pattern = { "%*%*%*%S", "%*%*%*" }, type = "markdown_bold_italic" },
{ pattern = { "%*%*%S", "%*%*" }, type = "markdown_bold" },
@@ -175,7 +175,7 @@ syntax.add {
type = { "keyword", "function", "string", "function" }
},
-- headings
{ pattern = "^#+%s.+\n", type = "keyword" },
{ pattern = "^#+%s.+$", type = "keyword" },
-- superscript and subscript
{
pattern = "%^()%d+()%^",