We are trying to create set of cross platform pages to use with our installer project, and Clean XHTML w/ inline styles seems like the best choice because it has no other deliverables required. However, the compiling process is stripping out the Google Font code from our pages, even if they are included in a MasterPage. Currently, we are just injecting that after the build, but as the project grows that process is becoming cumbersome.
Is there some way to protect that style information from being removed? This is what we've traditionally added to the HEAD section:
Code: Select all
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,500,500i,600,600i,700,700i');
</style>