Inheritance: IReaderMode
Example #1
0
        public IReaderMode Read(int indention, string line)
        {
            if (line.IsEmpty()) return this;

            if (line.IsMetadata())
            {
                parseMetadata(line);
                return this;
            }

            if (line.IsHeaderOne() && _spec.name.IsEmpty())
            {
                _spec.name = line.Trim().TrimStart('#').Trim();
                return this;
            }

            if (line.IsSectionHeader())
            {
                var section = line.ToSection();
                _spec.Children.Add(section);

                return new SectionMode(section);
            }

            if (line == MarkdownWriter.SectionEnd) return this;

            var mode = new CommentMode(_spec);
            mode.Read(indention, line);

            return mode;
        }
Example #2
0
        public IReaderMode Read(int indention, string text)
        {
            if (text.StartsWith("|>"))
            {
                if (indention == Indention)
                {
                    var mode = new StepMode(text);
                    Section.Children.Add(mode.Step);

                    return mode;
                }

                return null;
            }

            // Just keep going
            if (text.IsEmpty()) return this;

            // Need to pop this mode in the reader
            if (text.IsSectionHeader()) return null;

            if (text.IsMetadata())
            {
                string cell;
                string value;

                text.ParseMetadata(out cell, out value);

                Section.ActiveCells.Add(cell, bool.Parse(value));

                return this;
            }

            if (indention != Indention) return null;

            if (text == MarkdownWriter.SectionEnd) return null;

            if (text.IsTableLine())
            {
                var table = new TableParser(Section)
                {
                    Indention = indention
                };

                table.Read(indention, text);

                return table;
            }

            // Assume it's a comment
            var comment = new CommentMode(Section);
            comment.Read(indention, text);

            return comment;
        }
Example #3
0
        public IReaderMode Read(int indention, string line)
        {
            if (line.IsEmpty())
            {
                return(this);
            }

            if (line.IsMetadata())
            {
                parseMetadata(line);
                return(this);
            }

            if (line.IsHeaderOne() && _spec.name.IsEmpty())
            {
                _spec.name = line.Trim().TrimStart('#').Trim();
                return(this);
            }

            if (line.IsSectionHeader())
            {
                var section = line.ToSection();
                _spec.Children.Add(section);

                return(new SectionMode(section));
            }

            if (line == MarkdownWriter.SectionEnd)
            {
                return(this);
            }

            var mode = new CommentMode(_spec);

            mode.Read(indention, line);

            return(mode);
        }
Example #4
0
        public IReaderMode Read(int indention, string text)
        {
            if (text.StartsWith("|>"))
            {
                if (indention == Indention)
                {
                    var mode = new StepMode(text);
                    Section.Children.Add(mode.Step);

                    return(mode);
                }

                return(null);
            }

            // Just keep going
            if (text.IsEmpty())
            {
                return(this);
            }

            // Need to pop this mode in the reader
            if (text.IsSectionHeader())
            {
                return(null);
            }

            if (text.IsMetadata())
            {
                string cell;
                string value;

                text.ParseMetadata(out cell, out value);

                Section.ActiveCells.Add(cell, bool.Parse(value));

                return(this);
            }

            if (indention != Indention)
            {
                return(null);
            }

            if (text == MarkdownWriter.SectionEnd)
            {
                return(null);
            }

            if (text.IsTableLine())
            {
                var table = new TableParser(Section)
                {
                    Indention = indention
                };

                table.Read(indention, text);

                return(table);
            }

            // Assume it's a comment
            var comment = new CommentMode(Section);

            comment.Read(indention, text);

            return(comment);
        }