Jade and whitespaces

I'm starting to play with jade and got stuck with this:

I want to output something like:

  hey! this
is pre
     text!!!

I use tabs for indentation in templates and if I write spaces at the beginning of lines I get not both tabs & spaces indentation error.

My jade template:

div
    pre.  hey! this
        is pre
             text!!!

Have also tried with "|" syntax.

So, how can I output this? Thanks in advance ^_^

My mistake, was simple or just mistyped something:

pre
  |  hey! this
  |      is pre
  |           text!!!

Also got it to work using   as the first "space" character and "." syntax

pre.
    hey! this
         is pre
             text!

I came up with this:

view.jade

a.nav
  i.user
  nbsp
  | Me

style.css

nbsp {
  width: 0.5em;
  display: inline-block;
  white-space: nowrap;
}