rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/lexers/tsx.rb
2019-10-21 10:18:17 +02:00

21 lines
303 B
Ruby

# -*- coding: utf-8 -*- #
# frozen_string_literal: true
module Rouge
module Lexers
load_lexer 'jsx.rb'
load_lexer 'typescript/common.rb'
class TSX < JSX
include TypescriptCommon
title 'TypeScript'
desc 'tsx'
tag 'tsx'
filenames '*.tsx'
end
end
end