Shortcode and whitespace formatting problem

You should give the Attributes Section of the Shortcode API WordPress Codex page a read.

Unquoted values also must never contain spaces.

Short summary, use quotes – either " or ' – for attribute values with a space in it. Because an attribute name isn’t actually needed I think the »Info« part of your name will be an extra part of your $atts array, stored with a numeric index, so the array likely looks somewhat like this: array( 'name' => 'Travel', 0 => 'Info' ).

Before you say, but I tried quotes, let me say, there is no reason visible why it wouldn’t work with using quotes around the value.