Merge branch 'master' into master

This commit is contained in:
Alastair Mooney
2024-09-25 12:54:20 +01:00
committed by GitHub
16 changed files with 1483 additions and 514 deletions

View File

@@ -242,6 +242,13 @@
"start": "/\\*",
"end": "\\*/"
}
},
{
"type": "block",
"pattern": {
"start": "{/\\*",
"end": "\\*/}"
}
}
]
},
@@ -357,6 +364,22 @@
}
]
},
{
"language": "PureScript",
"markers": [
{
"type": "line",
"pattern": "--"
},
{
"type": "block",
"pattern": {
"start": "{-",
"end": "-}"
}
}
]
},
{
"language": "Haskell",
"markers": [
@@ -429,6 +452,22 @@
}
]
},
{
"language": "MDX",
"markers": [
{
"type": "block",
"pattern": {
"start": "{/\\*",
"end": "\\*/}"
}
},
{
"type": "line",
"pattern": "- \\[ \\]"
}
]
},
{
"language": "RMarkdown",
"markers": [
@@ -741,5 +780,62 @@
"pattern": "'"
}
]
},
{
"language": "Cuda",
"markers": [
{
"type": "line",
"pattern": "//"
},
{
"type": "block",
"pattern": {
"start": "/\\*",
"end": "\\*/"
}
}
]
},
{
"language": "Makefile",
"markers": [
{
"type": "line",
"pattern": "#"
}
]
},
{
"language": "Liquid",
"markers": [
{
"type": "line",
"pattern": "#"
},
{
"type": "block",
"pattern": {
"start": "{% comment %}",
"end": "{% endcomment %}"
}
}
]
},
{
"language": "Agda",
"markers": [
{
"type": "line",
"pattern": "--"
},
{
"type": "block",
"pattern": {
"start": "{-",
"end": "-}"
}
}
]
}
]