nestedtext top-level property

Mode nestedtext
final

Implementation

final nestedtext = Mode(
    refs: {},
    name: "Nested Text",
    aliases: ["nt"],
    contains: [
      Mode(
          scope: "comment",
          begin: "^\\s*(?=#)",
          end: "\$",
          contains: [
            Mode(
                scope: "doctag",
                begin: "[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",
                end: "(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",
                excludeBegin: true,
                relevance: 0),
            Mode(
                begin:
                    "[ ]+((?:I|a|is|so|us|to|at|if|in|it|on|[A-Za-z]+['](d|ve|re|ll|t|s|n)|[A-Za-z]+[-][a-z]+|[A-Za-z][a-z]{2,})[.]?[:]?([.][ ]|[ ])){3}")
          ],
          excludeBegin: true),
      Mode(variants: [
        Mode(match: ["^\\s*", "-", "[ ]", ".*\$"]),
        Mode(match: ["^\\s*", "-\$"])
      ], className: {
        "2": "bullet",
        "4": "string"
      }),
      Mode(
          match: ["^\\s*", ">", "[ ]", ".*\$"],
          className: {"2": "punctuation", "4": "string"}),
      Mode(
          match: ["^\\s*(?=\\S)", "[^:]+", ":\\s*", "\$"],
          className: {"2": "attribute", "3": "punctuation"}),
      Mode(
          match: ["^\\s*(?=\\S)", "[^:]*[^: ]", "[ ]*:", "[ ]", ".*\$"],
          className: {"2": "attribute", "3": "punctuation", "5": "string"})
    ]);