[#FormatParagraph] = FormatParagraph :mrdocs: Format a paragraph of text to a fixed width, adding spaces for indentation to any added line. == Synopsis Declared in `<util/strencodings.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::string FormatParagraph( std::string_view in, size_t width = 79, size_t indent = 0); ---- == Return Value The reflowed paragraph. == Parameters [cols="1,4"] |=== | Name| Description | *in* | The text to format. | *width* | The maximum line width in characters. | *indent* | Number of spaces to indent each wrapped line. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#