PicklesDoc.Pickles.DocumentationBuilders.Word.WordDescriptionFormatter.Format C# (CSharp) Method

Format() public method

public Format ( Body body, string description ) : void
body Body
description string
return void
        public void Format(Body body, string description)
        {
            foreach (var paragraph in SplitDescription(description))
            {
                body.GenerateParagraph(paragraph, "Normal");
            }
        }
WordDescriptionFormatter