Since the editor already is able to read your stylesheet, wouldn't it be nice if you were able to add your own typographies through your css-file?
I.e. you could have a syntax like this.
h1.myheading {
/*
@DwTypographyName = "My heading";
@DwTypographyTag = "h1";
*/
font-family:Verdana;
font-size:20px;
color:black;
}
In this example I have tried to create a tag-structure for defining typography name and tag. You could say that, if there is no @DwTypographyName defined, the rule should not be seen as a "FCKeditor typography", and if no @DwTypographyTag is set, the editor should automatically use a div.
This could be a really nice addition to a great template engine, and would make it extremely easy for end users to use special typographies on their sites.