299 """ |
299 """ |
300 Public method returning the language of the lexer. |
300 Public method returning the language of the lexer. |
301 |
301 |
302 @return language of the lexer (string) |
302 @return language of the lexer (string) |
303 """ |
303 """ |
304 return "Guessed" |
304 if self.__pygmentsName: |
|
305 return self.__pygmentsName |
|
306 else: |
|
307 return "Guessed" |
305 |
308 |
306 def description(self, style): |
309 def description(self, style): |
307 """ |
310 """ |
308 Public method returning the descriptions of the styles supported |
311 Public method returning the descriptions of the styles supported |
309 by the lexer. |
312 by the lexer. |