CommonMarkSharp.CommonMark.Parse C# (CSharp) Method

Parse() public method

public Parse ( TextReader reader ) : Document
reader System.IO.TextReader
return CommonMarkSharp.Blocks.Document
        public Document Parse(TextReader reader)
        {
            return CommonMarkParser.Parse(reader);
        }

Same methods

CommonMark::Parse ( string commonMark ) : Document