Differences From Artifact [2e40a434e4]:
- File mime.t — part of check-in [8d35307a7f] at 2021-01-10 03:54:46 on branch trunk — add memory pool impl, handle various little details, add beginnings of mimelib (user: lexi, size: 222) [annotate] [blame] [check-ins using]
To Artifact [b6a24abaaf]:
- File mime.t — part of check-in [e1ff4f301e] at 2021-01-10 14:26:47 on branch trunk — get some user admin shit working, general cleanups (user: lexi, size: 275) [annotate] [blame] [check-ins using]
2 3 4 5 6 7 8 9 10 11 12 13 |
['text/csrc'] = {
ext = 'c', lang = 'c';
};
['text/html'] = {
ext = 'html', lang = 'html';
unsafe = true;
};
['text/markdown'] = {
formatter = 'smackdown';
ext = 'md', doc = true;
};
}
|
> > > |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
['text/csrc'] = {
ext = 'c', lang = 'c';
};
['text/html'] = {
ext = 'html', lang = 'html';
unsafe = true;
};
['text/x-lua'] = {
ext = 'lua', lang = 'lua';
};
['text/markdown'] = {
formatter = 'smackdown';
ext = 'md', doc = true;
};
}
|