Cómo incluir un archivo css en jade (sin vincularlo)

Tengo este archivo de jade:

!!! 5
html
  head
    title test include
    style(type='text/css')
      //- DOES NOT WORK!
      include test.css
  body
    //- works
    include test.css
    div 
      //- works
      include test.css

La salida:

$ jade -P test.jade 
rendered test.html
$ cat test.html
<!DOCTYPE html>
<html>
  <head>
    <title>test include</title>
    <style type="text/css">
      //- DOES NOT WORK!
      include test.css
    </style>
  </head>
  <body>body { color: peachpuff; }

    <div> body { color: peachpuff; }

    </div>
  </body>
</html>

Por supuesto, podría simplemente vincular el archivo css, pero no quiero.

Respuestas a la pregunta(6)

Su respuesta a la pregunta