linebreaks

webkit display:inline-block behaving inconsistently

I have a span with several other spans inside it, and I want to toggle the sub-spans between display:block and display:inline. The spans start off with display:inline-block, then are switched to display:block. This works fine. The problem is when toggling back in Webkit (it works fine in Firefox): the spans are rendered with extra line b...

"Hard" word breaking / splitting in html / css

How can I split a long word/url at a certain point when displaying it in a html div? It should be like: thisisareallylongwordt hatneedstobebroken her e or something like th at. ...

When is it dangerous to line break after a close parenthesis in Javascript?

What are the dangers of breaking a line of long code up at a close parenthesis? When could a semicolon be automatically inserted by Javascript (presumably that is the danger, right?). Why is using a ) as a line breaker "frowned upon" by JSLint? In Javascript I sometimes see one long line of code broken up at a ) like this (example): ...

Using linebreak to break IF statement in Access VBA

I have a VBA conditional script as below: If COMORBIDITY_CANCER = -1 Or COMORBIDITY_CHRONIC_SKIN_LESIONS = -1 Or COMORBIDITY_CHRONIC_LUNG_DISEASE = -1 Or COMORBIDITY_CARDIOVASCULAR_DISEASE = -1 Or COMORBIDITY_DM = -1 Or COMORBIDITY_IMMUNODEFICIENCY_OR_CHEMOTHERAPY = -1 Or COMORBIDITY_ADL = -1 Or COMORBIDITY_HEPATIC_DISEASE = -1 Or COMOR...

Preserve line breaks in HTML,JAVA,Spring

Hi, i have a web application built with HTML(front-end),java(server-side) and i have a textarea when posting some data with line breaks (pressing enter after a word) the line breaks are not reserved (the data appears next to each other with no line breaks) how to preserve the line breaks ?, note that i am not using the tag when displayi...

sp_send_dbmail inserts line-breaks into the attached xml query result

When you use msdb.dbo.sp_send_dbmail to send a query result as an attachment, you'll have to provide the @query_result_width parameter which is an integer between 10 and 32767. Now, If you use For XML Path('Row'), Root('Data'), Type in your most-outer Select query, you may get the send_dbmail to send an xml attachment for you which is re...

How to break lines in LaTeX Bibliography

Hi, I have a very long url in my bibliography that it's not broken so appears outside margins. How could I fixed id? some breakline stuff? Thanks! ...

See line breaks and carriage returns in editor

Does anyone know of a text editor on linux that allows me to see line breaks and carriage returns? Does vim support this feature? Thanks. ...

Why do I get extra line breaks in the web page I download with Perl?

I'm writing a simple Perl script (on Windows) to download the response of a get request to a url to a file. Pretty straight-forward. Except when it writes to the output file, I get extra line breaks. So like instead of: <head> <title>title</title> <link .../> </head> I get <head> <title>title</title> <link .../> </head> ...

Drupal adding extra spacing in text

I am on Drupal6, and even with the WYSIWYG disabled, something is putting in white space where I don't expect it. For example if I enter: <p>HI there (you)</p> All is good. If I enter: <p>HI there (<strong>you</strong>)</p> I get a space between the opening parentheses and "you": Hi there ( you) When I save and go back in to t...

FF and IE - way of handeling \n in textarea

Im doing a textarea with jeditable. The content is saved and loaded from a database. But im having some problems in the way IE and FF handles linebreaks differently. After some debugging i've found a mysterious behavior in FF. For example if i input in textarea: 1 2 It will return 1<br>2 Which is fine. But if i write: 1 2 3 It ...