Hi,
is it anyhow possible that CMD_FILLWIDTH can handle '\n' in a way, that it starts the line-break-stuff new?
Example:
With the \n\n I want a blank line between the two sentences.
But when I use CMD_FILLWIDTH, the bt815 seems not to start its calculations new after a \n. This leads to a result like this:
Please do some
stuff here and
there.
And now
do print ...
What I want is this:
Please do some
stuff here and
there.
And now do print
...
Is this anyhow possible with CMD_FILLWIDTH?
is it anyhow possible that CMD_FILLWIDTH can handle '\n' in a way, that it starts the line-break-stuff new?
Example:
Code Select
std::string my_string = "Please do some stuff here and there.\n\nAnd now do print something with a blank line above.";
With the \n\n I want a blank line between the two sentences.
But when I use CMD_FILLWIDTH, the bt815 seems not to start its calculations new after a \n. This leads to a result like this:
Please do some
stuff here and
there.
And now
do print ...
What I want is this:
Please do some
stuff here and
there.
And now do print
...
Is this anyhow possible with CMD_FILLWIDTH?