<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hi Kersten!<br>
    <br>
    <div class="moz-cite-prefix">Am 11-03-2014 23:10, schrieb Kersten
      Richter:<br>
    </div>
    <blockquote
      cite="mid:1394590240-4154-1-git-send-email-kersten@us.ibm.com"
      type="cite">
      <pre wrap="">Style sheet is called kimchi.css. Not sure how the xsl works so wasn't sure how to get it included in the build.  Can  someone please take a look? This line needs to be in the header:
&lt;link rel="stylesheet" type="text/css" href="kimchi.css" /&gt;
I looked around the open source site but didn't see anything promising.

let me know if I can do anything to help or if this is a pipe dream.
</pre>
    </blockquote>
    <br>
    It's very easy to link a CSS to an XSL file. Inside the tag
    "&lt;xsl:template match="/"&gt;" there's a full template of the HTML
    page. Notice the regular &lt;head&gt; tag, with &lt;title&gt; and a
    &lt;link&gt; tag to set a custom icon. You can add exactly that line
    you provided above to the &lt;head&gt; tag, just like a regular HTML
    file. So we would have something like:<br>
    <tt><br>
    </tt><tt>&lt;html&gt;</tt><tt><br>
    </tt><tt>&nbsp; &lt;head&gt;</tt><tt><br>
    </tt><tt>&nbsp;&nbsp;&nbsp; &lt;title&gt;...&lt;/title&gt;</tt><tt><br>
    </tt><tt>&nbsp;&nbsp;&nbsp; &lt;link set-custom-icon /&gt;</tt><tt><br>
    </tt><b><tt>&nbsp;&nbsp;&nbsp; &lt;link set-css-file /&gt;</tt></b><tt><br>
    </tt><tt>&nbsp; &lt;/head&gt;</tt><tt><br>
    </tt><tt>&lt;/html&gt;</tt><br>
  </body>
</html>