whitespace

Trim whitespace from parent element only

I'd like to trim the leading whitespace inside p tags in XML, so this: <p> Hey, <em>italics</em> and <em>italics</em>!</p> Becomes this: <p>Hey, <em>italics</em> and <em>italics</em>!</p> (Trimming trailing whitespace won't hurt, but it's not mandatory.) Now, I know normalize-whitespace() is supposed to do this, but if I try to a...

Python without whitespace requirements

Is there an incarnation or fork of Python that formats blocks using punctuation instead of whitespace? There seem to be quite a few branches of Python, such as JPython, IronPython, etc, so just wondered if optional whitespace indentation had been evolved into one of those variants. I could potentially be interested in learning Python b...

Replacing whitespaces within list elements

I have a list of tags: >>> tags_list ['tag1', 'second tag', 'third longer tag'] How can I replace whitespaces within each element of the list with "+" ? I was trying to do this with regular expressions but each string remains unchanged: for tag in tags_list: re.sub("\s+" , " ", tag) What is wrong with my approach ? EDIT: Yes ...

CSS white-space nowrap doesn't increase width?

Hi there, I am reconstructing a dropdown menu similar to a <select> box using div's and jquery. The div containing the dropdown items should have a minimum width, but no maximum width as it should grow along with the widest item in the list (so if i have very long item like '[This is the longest item within the container]', the whole co...

svn diff whitespace/tab changes only

Is there way in svn diff or any other tool(linux based) to show only whitespace/tabs changes ?. Purpose, I dont want those diffs to be checked in. I can put back those lines to same state before check in if a tool could catch those diffs. Thanks, ...

Unknown whitespace appearing inside <div> without padding or margins

I'm having an odd issue with whitespace in a design I'm building. I created a <div> to contain voting elements - it holds an upvote button, downvote button, and vote total, each inside their own <div> element, and using <img> for the buttons. Source: <div class="votebox"> <div class="vote"><img src="upvote.png" /></div> <div class...

Swiftmailer subject and weird whitespace problem

Hey When sending a message with swiftmailer or SmtpMailer, the subject has a weird whitespace. The subject should look like this: "Newsletter October 2010 - Hello everyone" But looks like this: "Newsletter October 2010 - Hello everyo ne" The whitespace always comes up the same place. PHPmailer does not have the whitespace, but we ...

Checking Unicode string for whitespace - byte for byte!

Quick & dirty Q: Can I safely assume that a byte of a UTF-8, UTF-16 or UTF-32 codepoint (character) will not be an ASCII whitespace character (unless the codepoint is representing one)? I'll explain: Say that I have a UTF-8 encoded string. This string contains some characters that take more than one byte to store. I need to find out ...