summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-plugin-highlight/src/ALIASES.js
blob: 565de36d6bde772e335271cafcc0894a2f872798 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

/**
 * Common aliases also recognizes by GitHub.
 * @type {Object}
 */
const ALIASES = {
    'py':     'python',
    'js':     'javascript',
    'json':   'javascript',
    'rb':     'ruby',
    'csharp': 'cs'
};

module.exports = ALIASES;