With the current released version, there is no wordwrap support that i know of. Sorry. And currently development versions are not close to a releasable state.
MikeyB
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm adapting Codepress to use it within a personal project, and I could wrap text by changing codepress.css. I've commented "white-space: pre" in "body" declaration, and I'm using "white-space: normal" in pre and P declarations:
pre {
margin:0;
font-family:Verdana,Arial;
white-space: /* pre-wrap; */ normal;
}
Is there a way to turn on textwrap such as with a <textarea wrap="soft"> command?
hello bcater,
With the current released version, there is no wordwrap support that i know of. Sorry. And currently development versions are not close to a releasable state.
MikeyB
Hello!
I'm adapting Codepress to use it within a personal project, and I could wrap text by changing codepress.css. I've commented "white-space: pre" in "body" declaration, and I'm using "white-space: normal" in pre and P declarations:
pre {
margin:0;
font-family:Verdana,Arial;
white-space: /* pre-wrap; */ normal;
}
P {
margin:0;
padding:0;
border:0;
outline:0;
display:block;
white-space: /* pre-wrap; */ normal;
}
If you are using Firefox 3 you can try "pre-wrap" value also.
(Not tested in IE.)