MarkdownDeep.Markdown.IsSectionHeader C# (CSharp) Method

IsSectionHeader() private method

private IsSectionHeader ( Block b ) : bool
b Block
return bool
        bool IsSectionHeader(Block b)
        {
            return b.blockType >= BlockType.h1 && b.blockType <= BlockType.h3;
        }

Usage Example

Example #1
0
        // Split the markdown into sections, one section for each
        // top level heading
        public static List <string> SplitSections(string markdown)
        {
            // Build blocks
            var md = new Markdown();

            // Process blocks
            var blocks = md.ProcessBlocks(markdown);

            // Create sections
            var sections      = new List <string>();
            var sectionOffset = 0;

            foreach (var b in blocks)
            {
                if (!md.IsSectionHeader(b))
                {
                    continue;
                }
                // Get the offset of the section
                var iSectionOffset = b.LineStart;

                // Add section
                sections.Add(markdown.Substring(sectionOffset, iSectionOffset - sectionOffset));

                sectionOffset = iSectionOffset;
            }

            // Add the last section
            if (markdown.Length > sectionOffset)
            {
                sections.Add(markdown.Substring(sectionOffset));
            }

            return(sections);
        }
All Usage Examples Of MarkdownDeep.Markdown::IsSectionHeader