texttransform

Mono refuses to resolve relative paths in T4 template includes

Ok so I'm trying to hack together something to make SubSonic3 work with Postgres, on Mono. I almost have the templates generating but have ran into one small problem. <#@ include file="PostgreSQL.ttinclude" #> will give a "cannot resolve include file" error. However, specifying a full path will work(though cumbersome) <#@ include...

css text-transform capitalize on all caps

Here is my HTML: <a href="#" class="link">small caps</a> & <a href="#" class="link">ALL CAPS</a> Here is my css: .link {text-transform: capitalize;} The output is: Small Caps & ALL CAPS and I want the output to be: Small Caps & All Caps Any ideas? ...