rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/lexers/tsx.rb

21 lines
303 B
Ruby
Raw Normal View History

2019-10-21 08:18:17 +00:00
# -*- 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