Initial population
This commit is contained in:
22
JRCookbookBusiness/Converters/HtmlTokenType.cs
Normal file
22
JRCookbookBusiness/Converters/HtmlTokenType.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
// // Copyright (c) Microsoft. All rights reserved.
|
||||
// // Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
namespace HtmlToXamlDemo
|
||||
{
|
||||
/// <summary>
|
||||
/// types of lexical tokens for html-to-xaml converter
|
||||
/// </summary>
|
||||
internal enum HtmlTokenType
|
||||
{
|
||||
OpeningTagStart,
|
||||
ClosingTagStart,
|
||||
TagEnd,
|
||||
EmptyTagEnd,
|
||||
EqualSign,
|
||||
Name,
|
||||
Atom, // any attribute value not in quotes
|
||||
Text, //text content when accepting text
|
||||
Comment,
|
||||
Eof
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user