CommentLexer: remove Markdown tokens from the token list (they are not emitted by lexer).

llvm-svn: 159681
This commit is contained in:
Dmitri Gribenko 2012-07-03 20:21:49 +00:00
parent a0bc1083be
commit 93976cc136
1 changed files with 1 additions and 9 deletions

View File

@ -41,15 +41,7 @@ enum TokenKind {
html_equals, // =
html_quoted_string, // "blah\"blah" or 'blah\'blah'
html_greater, // >
html_tag_close, // </tag>
// Markdown tokens (not supported yet).
ruler,
md_code_line, // Line indented at least by 4 spaces.
md_code_inline, // `code`
md_emph, // _text_ or *text*
md_strong, // __text__ or *text*
md_header // ### level 3 header ###
html_tag_close // </tag>
};
} // end namespace tok