Skip to content
This repository was archived by the owner on Nov 5, 2021. It is now read-only.

Commit 0d4fd0f

Browse files
authored
Merge pull request #5 from ashalkhakov/postiats
Adding support for ATS/Postiats.
2 parents 14358c5 + ba5e900 commit 0d4fd0f

File tree

7 files changed

+1583
-1
lines changed

7 files changed

+1583
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Colorization and configuration supports for multiple languages for the Monaco Ed
1414
* jade
1515
* lua
1616
* objective-c
17+
* postiats
1718
* powershell
1819
* python
1920
* r

gulpfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ gulp.task('release', ['clean-release','compile'], function() {
6161
bundleOne('src/markdown'),
6262
bundleOne('src/objective-c'),
6363
bundleOne('src/powershell'),
64+
bundleOne('src/postiats'),
6465
bundleOne('src/python'),
6566
bundleOne('src/r'),
6667
bundleOne('src/ruby'),

src/monaco.contribution.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,12 @@ registerLanguage({
129129
extensions: [ '.m' ],
130130
aliases: [ 'Objective-C'],
131131
module: './objective-c'
132+
});
133+
registerLanguage({
134+
id: 'postiats',
135+
extensions: [ '.dats', '.sats', '.hats' ],
136+
aliases: [ 'ATS', 'ATS/Postiats' ],
137+
module: './postiats'
132138
});
133139
registerLanguage({
134140
id: 'powershell',

0 commit comments

Comments
 (0)