// // Copyright (c) Microsoft. All rights reserved. // // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace HtmlToXamlDemo { /// /// types of lexical tokens for html-to-xaml converter /// internal enum HtmlTokenType { OpeningTagStart, ClosingTagStart, TagEnd, EmptyTagEnd, EqualSign, Name, Atom, // any attribute value not in quotes Text, //text content when accepting text Comment, Eof } }