You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
393 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace MarkdownSharp
  5. {
  6. internal enum TokenType
  7. {
  8. Text,
  9. Tag
  10. }
  11. internal struct Token
  12. {
  13. public Token(TokenType type, string value)
  14. {
  15. Type = type;
  16. Value = value;
  17. }
  18. public TokenType Type;
  19. public string Value;
  20. }
  21. }