1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Emacs tree-sitter grammar version compatibility report</title>
<style>
body {
width: min(90vw, 40rem);
margin: auto;
margin-top: 2rem;
margin-bottom: 2rem;
font-family: ui-serif;
}
thead {
font-weight: bold;
}
table {
margin: auto;
}
table td {
padding: 0.5rem 1rem;
width: 10rem;
word-break: break-all;
}
.head {
background: lightgreen;
}
</style>
</head>
<body>
<h1>Emacs tree-sitter grammar compatibility</h1>
<p>This is an auto-generated report of the last compatible version for each grammar in each Emacs version. A <span class="head">green background</span> on the version indicates that the Emacs version is compatible with the latest commit in the upstream grammar repo.</p>
<p>This report is generated on ___REPLACE_TIME___.</p>
<table>
___REPLACE_TABLE___
</table>
</body>
</html>
|